json-sort-cli 3.0.0 → 3.0.1

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 +3 -7
  2. package/package.json +12 -6
package/CHANGELOG.md CHANGED
@@ -3,23 +3,19 @@
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
- # [3.0.0](https://github.com/codsen/codsen/compare/json-sort-cli@2.1.11...json-sort-cli@3.0.0) (2022-12-01)
7
-
8
- ### Features
9
-
10
- - drop Node v12 support; minimum version requirement now is v14.18 and above ([c8049e8](https://github.com/codsen/codsen/commit/c8049e82a5844d3f72587740f1cc74e3c9020d22))
6
+ ## 3.0.0 (2022-12-01)
11
7
 
12
8
  ### BREAKING CHANGES
13
9
 
14
10
  - Minimum supported Node version is v14.18; we're dropping v12 support
15
11
 
16
- ## [2.1.3](https://github.com/codsen/codsen/compare/json-sort-cli@2.1.2...json-sort-cli@2.1.3) (2022-10-13)
12
+ ## 2.1.3 (2022-10-13)
17
13
 
18
14
  ### Fixed
19
15
 
20
16
  - update dependencies ([a3834e7](https://github.com/codsen/codsen/commit/a3834e75d77cbdb238cfa8ec392829dfa95cb962))
21
17
 
22
- # 2.1.0 (2022-08-12)
18
+ ## 2.1.0 (2022-08-12)
23
19
 
24
20
  ### Features
25
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-sort-cli",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Command line app to deep sort JSON files, retains package.json special key order",
5
5
  "keywords": [
6
6
  "app",
@@ -36,12 +36,18 @@
36
36
  "cjs-off": "exit 0",
37
37
  "cjs-on": "exit 0",
38
38
  "dev": "exit 0",
39
+ "devtest": "npm run test",
40
+ "dts": "exit 0",
41
+ "examples": "exit 0",
39
42
  "lect": "node '../../ops/lect/lect.js'",
40
- "letspublish": "yarn publish || :",
43
+ "letspublish": "npm publish || :",
41
44
  "lint": "eslint . --ext .js --ext .ts --fix",
42
- "prepare": "echo 'ready'",
43
- "prettier:format": "prettier --write '**/*.{js,md}' --no-error-on-unmatched-pattern",
44
- "test": "c8 yarn run unit && yarn run lint",
45
+ "perf": "exit 0",
46
+ "prep": "echo 'ready'",
47
+ "prettier": "prettier",
48
+ "prettier:format": "npm run prettier -- --write '**/*.{js,md}' --no-error-on-unmatched-pattern --loglevel 'silent'",
49
+ "pretest": "echo 0",
50
+ "test": "c8 npm run unit && npm run lint",
45
51
  "unit": "uvu test"
46
52
  },
47
53
  "engines": {
@@ -61,7 +67,7 @@
61
67
  }
62
68
  },
63
69
  "dependencies": {
64
- "ast-monkey-traverse": "^4.0.0",
70
+ "ast-monkey-traverse": "^4.0.1",
65
71
  "chalk": "^5.1.2",
66
72
  "fs-extra": "^11.1.0",
67
73
  "globby": "^13.1.2",