@kitschpatrol/shared-config 5.5.0 → 5.6.0

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/bin/cli.js +7 -3
  2. package/package.json +13 -13
  3. package/readme.md +2 -1
package/bin/cli.js CHANGED
@@ -11084,7 +11084,7 @@ var Yargs = YargsFactory(esm_default);
11084
11084
  var yargs_default = Yargs;
11085
11085
 
11086
11086
  // ../../package.json
11087
- var version = "5.5.0";
11087
+ var version = "5.6.0";
11088
11088
 
11089
11089
  // ../../src/execa-utilities.ts
11090
11090
  function isErrorExecaError(error) {
@@ -11130,7 +11130,7 @@ function stringify(passedObj, options = {}) {
11130
11130
  ).slice(2, -3);
11131
11131
  const maxLength = indent === "" ? Infinity : options.maxLength === void 0 ? 80 : options.maxLength;
11132
11132
  let { replacer } = options;
11133
- return function _stringify(obj, currentIndent, reserved) {
11133
+ return (function _stringify(obj, currentIndent, reserved) {
11134
11134
  if (obj && typeof obj.toJSON === "function") {
11135
11135
  obj = obj.toJSON();
11136
11136
  }
@@ -11196,7 +11196,7 @@ ${currentIndent}`
11196
11196
  }
11197
11197
  }
11198
11198
  return string;
11199
- }(passedObj, "", 0);
11199
+ })(passedObj, "", 0);
11200
11200
  }
11201
11201
 
11202
11202
  // ../../src/json-utilities.ts
@@ -12003,6 +12003,8 @@ var commandDefinition2 = {
12003
12003
  commands: [
12004
12004
  {
12005
12005
  name: "eslint",
12006
+ // Consider '--concurrency', 'auto'
12007
+ // Didn't benchmark particularly fast in September 2025
12006
12008
  optionFlags: ["--fix"],
12007
12009
  receivePositionalArguments: true
12008
12010
  }
@@ -12019,6 +12021,8 @@ var commandDefinition2 = {
12019
12021
  commands: [
12020
12022
  {
12021
12023
  name: "eslint",
12024
+ // Consider // Consider '--concurrency', 'auto'
12025
+ // Didn't benchmark particularly fast in September 2025
12022
12026
  optionFlags: ["--max-warnings", "0"],
12023
12027
  receivePositionalArguments: true
12024
12028
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/shared-config",
3
- "version": "5.5.0",
3
+ "version": "5.6.0",
4
4
  "description": "A collection of shared configurations, linters, and formatting tools for TypeScript projects. All managed as a single dependency, and invoked via a single CLI command.",
5
5
  "keywords": [
6
6
  "shared-config",
@@ -41,24 +41,24 @@
41
41
  "cosmiconfig-typescript-loader": "^6.1.0",
42
42
  "execa": "^9.6.0",
43
43
  "find-workspaces": "^0.3.1",
44
- "fs-extra": "^11.3.0",
45
- "prettier": "^3.5.3",
46
- "@kitschpatrol/cspell-config": "5.5.0",
47
- "@kitschpatrol/prettier-config": "5.5.0",
48
- "@kitschpatrol/eslint-config": "5.5.0",
49
- "@kitschpatrol/repo-config": "5.5.0",
50
- "@kitschpatrol/stylelint-config": "5.5.0",
51
- "@kitschpatrol/knip-config": "5.5.0",
52
- "@kitschpatrol/remark-config": "5.5.0",
53
- "@kitschpatrol/typescript-config": "5.5.0",
54
- "@kitschpatrol/mdat-config": "5.5.0"
44
+ "fs-extra": "^11.3.1",
45
+ "prettier": "^3.6.2",
46
+ "@kitschpatrol/mdat-config": "5.6.0",
47
+ "@kitschpatrol/cspell-config": "5.6.0",
48
+ "@kitschpatrol/eslint-config": "5.6.0",
49
+ "@kitschpatrol/prettier-config": "5.6.0",
50
+ "@kitschpatrol/knip-config": "5.6.0",
51
+ "@kitschpatrol/repo-config": "5.6.0",
52
+ "@kitschpatrol/remark-config": "5.6.0",
53
+ "@kitschpatrol/stylelint-config": "5.6.0",
54
+ "@kitschpatrol/typescript-config": "5.6.0"
55
55
  },
56
56
  "devDependencies": {
57
57
  "globby": "^14.1.0",
58
58
  "picocolors": "^1.1.1"
59
59
  },
60
60
  "engines": {
61
- "node": ">=20.9.0"
61
+ "node": ">=20.19.0"
62
62
  },
63
63
  "publishConfig": {
64
64
  "access": "public"
package/readme.md CHANGED
@@ -117,7 +117,7 @@ The top-level `kpi` command also takes care of some nuances in terms of _which_
117
117
 
118
118
  ### Dependencies
119
119
 
120
- [Node](https://nodejs.org) >=20.9.0 is required, and [pnpm](https://pnpm.io) >=10 is recommended. NPM and yarn might work as well, but I haven't tested them.
120
+ [Node](https://nodejs.org) >=20.19.0 is required, and [pnpm](https://pnpm.io) >=10 is recommended. NPM and yarn might work as well, but I haven't tested them.
121
121
 
122
122
  ### Installation
123
123
 
@@ -385,6 +385,7 @@ Something to investigate: An [approach](https://github.com/antfu/eslint-config#v
385
385
  - [Complete](https://complete-ts.github.io/)
386
386
  - [vercel/style-guide](https://github.com/vercel/style-guide)
387
387
  - [ZumerBox](https://github.com/zumerlab/zumerbox)
388
+ - [lintroll](https://www.npmjs.com/package/lintroll)
388
389
 
389
390
  <!-- license -->
390
391