json-sort-cli 2.1.7 → 2.1.8
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 +3 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -24,7 +24,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
24
24
|
|
|
25
25
|
### BREAKING CHANGES
|
|
26
26
|
|
|
27
|
-
- programs now are in ES Modules and won't work with Common JS require()
|
|
27
|
+
- programs now are in ES Modules and won't work with Common JS `require()`
|
|
28
28
|
|
|
29
29
|
## 1.20.0
|
|
30
30
|
|
|
@@ -47,11 +47,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
47
47
|
|
|
48
48
|
### Fixed
|
|
49
49
|
|
|
50
|
-
- add testStats to npmignore ([f3c84e9](https://github.com/codsen/codsen/commit/f3c84e95afc5514214312f913692d85b2e12eb29))
|
|
50
|
+
- add `testStats` to npmignore ([f3c84e9](https://github.com/codsen/codsen/commit/f3c84e95afc5514214312f913692d85b2e12eb29))
|
|
51
51
|
|
|
52
52
|
## 1.17.0 (2020-11-28)
|
|
53
53
|
|
|
54
|
-
Accidental version bump during migration to
|
|
54
|
+
Accidental version bump during migration to SourceHut. Sorry about that.
|
|
55
55
|
|
|
56
56
|
## 1.16.0 (2020-09-15)
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "json-sort-cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"description": "Command line app to deep sort JSON files, retains package.json special key order",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dev": "echo 'no build needed'",
|
|
37
37
|
"lect": "node '../../ops/lect/lect.js'",
|
|
38
38
|
"letspublish": "yarn publish || :",
|
|
39
|
-
"lint": "eslint . --fix",
|
|
39
|
+
"lint": "eslint . --ext .js --ext .ts --fix",
|
|
40
40
|
"prepare": "echo 'ready'",
|
|
41
41
|
"prettier:format": "prettier --write '**/*.{js,md}' --no-error-on-unmatched-pattern",
|
|
42
42
|
"test": "c8 yarn run unit && yarn run lint",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"ast-monkey-traverse": "^3.1.
|
|
62
|
+
"ast-monkey-traverse": "^3.1.4",
|
|
63
63
|
"chalk": "^5.1.2",
|
|
64
64
|
"fs-extra": "^10.1.0",
|
|
65
65
|
"globby": "^13.1.2",
|