json-sort-cli 2.0.2 → 2.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 2.0.3 (2021-11-02)
7
+
8
+ ### Bug Fixes
9
+
10
+ - bump TS and separate ESLint plugins away from this monorepo ([b1ebce1](https://github.com/codsen/codsen/commit/b1ebce1637d8c41c2d848fc24b0ba4058865bd5d))
11
+
12
+ ### Features
13
+
14
+ - migrate to ES Modules ([c579dff](https://github.com/codsen/codsen/commit/c579dff3b23205e383035ca10ddcec671e35d0fe))
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ - programs now are in ES Modules and won't work with Common JS require()
19
+
6
20
  ## 2.0.1 (2021-09-13)
7
21
 
8
22
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-sort-cli",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Command line app to deep sort JSON files, retains package.json special key order",
5
5
  "keywords": [
6
6
  "app",
@@ -33,6 +33,7 @@
33
33
  },
34
34
  "scripts": {
35
35
  "ci_test": "npm run format && tap --no-only --reporter=silent --output-file=testStats.md && npm run clean_cov",
36
+ "clean_cov": "../../scripts/leaveCoverageTotalOnly.js",
36
37
  "dev": "echo\"\"",
37
38
  "devunittest": "npm run dev && tap --only -R 'base'",
38
39
  "format": "npm run lect && npm run prettier && npm run lint",
@@ -42,8 +43,7 @@
42
43
  "republish": "npm publish || :",
43
44
  "tap": "tap",
44
45
  "test": "npm run lint && npm run unittest && npm run format",
45
- "unittest": "tap --no-only --output-file=testStats.md --reporter=terse && npm run clean_cov",
46
- "clean_cov": "../../scripts/leaveCoverageTotalOnly.js"
46
+ "unittest": "tap --no-only --output-file=testStats.md --reporter=terse && npm run clean_cov"
47
47
  },
48
48
  "tap": {
49
49
  "check-coverage": false,
@@ -72,7 +72,7 @@
72
72
  }
73
73
  },
74
74
  "dependencies": {
75
- "ast-monkey-traverse": "^3.0.2",
75
+ "ast-monkey-traverse": "^3.0.3",
76
76
  "chalk": "^4.1.2",
77
77
  "fs-extra": "^10.0.0",
78
78
  "globby": "^12.0.2",
@@ -81,20 +81,20 @@
81
81
  "meow": "^10.1.1",
82
82
  "p-filter": "^3.0.0",
83
83
  "p-reduce": "^3.0.0",
84
- "sort-package-json": "^1.51.0",
84
+ "sort-package-json": "^1.52.0",
85
85
  "sorted-object": "^2.0.1",
86
86
  "update-notifier": "^5.1.0"
87
87
  },
88
88
  "devDependencies": {
89
89
  "@istanbuljs/esm-loader-hook": "^0.1.2",
90
90
  "@types/lodash.isplainobject": "^4.0.6",
91
- "core-js": "^3.17.3",
91
+ "core-js": "^3.19.0",
92
92
  "cross-env": "^7.0.3",
93
- "eslint": "^7.32.0",
93
+ "eslint": "^8.1.0",
94
94
  "execa": "^5.1.1",
95
- "lect": "^0.18.2",
96
- "p-map": "^5.1.0",
97
- "tap": "^15.0.9",
95
+ "lect": "^0.18.3",
96
+ "p-map": "^5.2.0",
97
+ "tap": "^15.0.10",
98
98
  "tempy": "^2.0.0",
99
99
  "tslib": "^2.3.1"
100
100
  },