js-beautify 1.5.9 → 1.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -10
- package/package.json +1 -1
- package/release-all.sh +5 -0
- package/CNAME +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
-
## v1.5.8
|
|
3
|
-
|
|
4
|
-
### Description
|
|
5
|
-
Hotfix for directives
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Closed Issues
|
|
9
|
-
* Preserve directive doesn't work as intended ([#723](https://github.com/beautify-web/js-beautify/issues/723))
|
|
10
|
-
|
|
11
|
-
|
|
12
2
|
## v1.5.7
|
|
13
3
|
|
|
14
4
|
### Description
|
|
@@ -181,6 +171,17 @@ https://github.com/beautify-web/js-beautify/compare/v1.5.1...v1.5.2
|
|
|
181
171
|
* beautification of "nth-child" css fails csslint ([#418](https://github.com/beautify-web/js-beautify/issues/418))
|
|
182
172
|
|
|
183
173
|
|
|
174
|
+
## v1.5.10
|
|
175
|
+
|
|
176
|
+
### Description
|
|
177
|
+
Hotfix for directives
|
|
178
|
+
Version jump due to release script tweaks
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Closed Issues
|
|
182
|
+
* Preserve directive doesn't work as intended ([#723](https://github.com/beautify-web/js-beautify/issues/723))
|
|
183
|
+
|
|
184
|
+
|
|
184
185
|
## v1.5.1
|
|
185
186
|
|
|
186
187
|
### Description
|
package/package.json
CHANGED
package/release-all.sh
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
NEW_VERSION=$1
|
|
4
4
|
|
|
5
|
+
git checkout master
|
|
6
|
+
|
|
5
7
|
./generate-changelog.sh beautify-web/js-beautify || exit 1
|
|
6
8
|
git commit -am "Update Changelog for $NEW_VERSION"
|
|
7
9
|
|
|
@@ -23,5 +25,8 @@ git push
|
|
|
23
25
|
git push --tags
|
|
24
26
|
|
|
25
27
|
# web
|
|
28
|
+
git clean -xfd
|
|
26
29
|
git checkout gh-pages && git fetch && git merge origin/master && git push || exit 1
|
|
27
30
|
|
|
31
|
+
git checkout master
|
|
32
|
+
|
package/CNAME
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
jsbeautifier.org
|