-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
converting prettydiff to prettydiff2 #1750
Changes from 9 commits
d57c90c
7178248
dc36110
9e8f64f
9f44a63
c9f2f1f
46e0274
10c5e26
002b668
9de6c85
9d9d833
06dd035
25c422c
f908305
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
] | ||
</script> | ||
|
||
<style scoped> | ||
<style scoped="scoped"> | ||
:scope { | ||
font-size: 2rem; | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/* kendo UI */ | ||
|
||
@import "variables"; | ||
|
||
// slider | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -175,7 +175,7 @@ | |
"node-dir": "0.1.17", | ||
"node-uuid": "1.4.8", | ||
"open": "0.0.5", | ||
"prettydiff": "1.16.37", | ||
"prettydiff2": ">2.2.5", | ||
"pug-beautify": "^0.1.1", | ||
"remark": "6.0.1", | ||
"season": "6.0.0", | ||
|
@@ -225,6 +225,7 @@ | |
"atom-beautify:beautify-language-go", | ||
"atom-beautify:beautify-language-golang template", | ||
"atom-beautify:beautify-language-fortran", | ||
"atom-beautify:beautify-language-fuse", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is Fuse the Atom-Beautify language? I thought it was Note that these should be automatically generated/added, so if you find yourself adding this option, it should actually not be there 😜 . There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing... |
||
"atom-beautify:beautify-language-handlebars", | ||
"atom-beautify:beautify-language-haskell", | ||
"atom-beautify:beautify-language-html", | ||
|
@@ -422,7 +423,7 @@ | |
"typescript-formatter", | ||
"tidy-markdown", | ||
"underscore-plus", | ||
"prettydiff" | ||
"prettydiff2" | ||
] | ||
} | ||
}, | ||
|
@@ -434,7 +435,7 @@ | |
"typescript-formatter", | ||
"tidy-markdown", | ||
"underscore-plus", | ||
"prettydiff" | ||
"prettydiff2" | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,12 +44,11 @@ describe "BeautifyLanguages", -> | |
|
||
# Activate all of the languages | ||
allLanguages = [ | ||
"c", "clojure", "coffee-script", "css", "d", "html", | ||
"java", "javascript", "json", "less", | ||
"mustache", "objective-c", "perl", "php", | ||
"python", "ruby", "sass", "sql", "svg", | ||
"xml", "csharp", "gfm", "marko", | ||
"go", "html-swig", "lua" | ||
"c", "clojure", "coffee-script", "css", "csharp", "d", "fuse", | ||
"gfm", "go", "html", "html-swig", "java", "javascript", | ||
"json", "less", "lua", "marko", "mustache", "objective-c", | ||
"perl", "php", "python", "ruby", "sass", "sql", | ||
"svg", "xml" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I forgot, it also needed to be added to Travis CI's install list: https://github.com/prettydiff/atom-beautify/blob/002b668ca23b2a0932ee3cd079c212c6f5e731d9/.travis.yml#L59 Looks like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not sure why but adding language-fuse to the build artifacts makes the build time out. |
||
] | ||
# All Atom packages that Atom Beautify is dependent on | ||
dependentPackages = [ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ module.exports = { | |
|
||
name: "UX Markup" | ||
namespace: "ux" | ||
fallback: ['html'] | ||
fallback: ['xml'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This may change the behaviour for current users of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just figured this grammar was more closely related to XML than HTML. It did not appear to have any effect in the build. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This is true, however any users who are leveraging the
Unfortunately, our builds do not have great coverage 😝 . Something I hope to address with Unibeautify. |
||
|
||
### | ||
Supported Grammars | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does
prettydiff2
follow semver? If so, this should be^2.2.5
so no major version is updated.