json-sort-cli 2.0.0 → 2.0.4

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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +2 -0
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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
+
20
+ ## 2.0.1 (2021-09-13)
21
+
22
+ ### Bug Fixes
23
+
24
+ - bump TS and separate ESLint plugins away from this monorepo ([2e07d42](https://github.com/codsen/codsen/commit/2e07d424222b6ffedf5fb45c83ad453627ec2904))
25
+
6
26
  ## 2.0.0 (2021-09-09)
7
27
 
8
28
  ### Features
package/README.md CHANGED
@@ -26,6 +26,8 @@
26
26
 
27
27
  ## Install
28
28
 
29
+ This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required:
30
+
29
31
  ```bash
30
32
  npm i -g json-sort-cli
31
33
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-sort-cli",
3
- "version": "2.0.0",
3
+ "version": "2.0.4",
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.0",
75
+ "ast-monkey-traverse": "^3.0.4",
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.50.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.1",
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.0",
96
- "p-map": "^5.1.0",
97
- "tap": "^15.0.9",
95
+ "lect": "^0.18.4",
96
+ "p-map": "^5.3.0",
97
+ "tap": "^15.0.10",
98
98
  "tempy": "^2.0.0",
99
99
  "tslib": "^2.3.1"
100
100
  },