json-sort-cli 3.0.10 → 3.0.12

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/cli.js +2 -2
  2. package/package.json +5 -5
package/cli.js CHANGED
@@ -265,7 +265,7 @@ function readSortAndWriteOverFile(oneOfPaths) {
265
265
  log(
266
266
  `${chalk.grey(
267
267
  prefix
268
- )}${oneOfPaths} - ${`\u001b[${32}m${`OK`}\u001b[${39}m`}`
268
+ )}${oneOfPaths} - ${`\u001b[${32}m${"OK"}\u001b[${39}m`}`
269
269
  );
270
270
  }
271
271
  return true;
@@ -274,7 +274,7 @@ function readSortAndWriteOverFile(oneOfPaths) {
274
274
  })
275
275
  .catch((err) => {
276
276
  console.log(
277
- `${oneOfPaths} - ${`\u001b[${31}m${`BAD`}\u001b[${39}m`} - ${err}`
277
+ `${oneOfPaths} - ${`\u001b[${31}m${"BAD"}\u001b[${39}m`} - ${err}`
278
278
  );
279
279
  });
280
280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-sort-cli",
3
- "version": "3.0.10",
3
+ "version": "3.0.12",
4
4
  "description": "Command line app to deep sort JSON files, retains package.json special key order",
5
5
  "keywords": [
6
6
  "app",
@@ -67,11 +67,11 @@
67
67
  }
68
68
  },
69
69
  "dependencies": {
70
- "ast-monkey-traverse": "^4.0.7",
70
+ "ast-monkey-traverse": "^4.0.8",
71
71
  "chalk": "^5.2.0",
72
- "codsen-utils": "^1.3.0",
73
- "fs-extra": "^11.1.0",
74
- "globby": "^13.1.3",
72
+ "codsen-utils": "^1.3.1",
73
+ "fs-extra": "^11.1.1",
74
+ "globby": "^13.1.4",
75
75
  "is-d": "^1.0.0",
76
76
  "meow": "^11.0.0",
77
77
  "p-filter": "^3.0.0",