@kitschpatrol/shared-config 5.10.0 → 5.11.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.
- package/bin/cli.js +27 -4
- package/package.json +11 -11
package/bin/cli.js
CHANGED
|
@@ -4265,9 +4265,9 @@ var require_reusify = __commonJS({
|
|
|
4265
4265
|
}
|
|
4266
4266
|
});
|
|
4267
4267
|
|
|
4268
|
-
// ../../node_modules/.pnpm/fastq@1.
|
|
4268
|
+
// ../../node_modules/.pnpm/fastq@1.20.1/node_modules/fastq/queue.js
|
|
4269
4269
|
var require_queue = __commonJS({
|
|
4270
|
-
"../../node_modules/.pnpm/fastq@1.
|
|
4270
|
+
"../../node_modules/.pnpm/fastq@1.20.1/node_modules/fastq/queue.js"(exports, module) {
|
|
4271
4271
|
"use strict";
|
|
4272
4272
|
var reusify = require_reusify();
|
|
4273
4273
|
function fastqueue(context, worker, _concurrency) {
|
|
@@ -4313,7 +4313,8 @@ var require_queue = __commonJS({
|
|
|
4313
4313
|
empty: noop2,
|
|
4314
4314
|
kill,
|
|
4315
4315
|
killAndDrain,
|
|
4316
|
-
error
|
|
4316
|
+
error,
|
|
4317
|
+
abort
|
|
4317
4318
|
};
|
|
4318
4319
|
return self;
|
|
4319
4320
|
function running() {
|
|
@@ -4432,6 +4433,28 @@ var require_queue = __commonJS({
|
|
|
4432
4433
|
self.drain();
|
|
4433
4434
|
self.drain = noop2;
|
|
4434
4435
|
}
|
|
4436
|
+
function abort() {
|
|
4437
|
+
var current = queueHead;
|
|
4438
|
+
queueHead = null;
|
|
4439
|
+
queueTail = null;
|
|
4440
|
+
while (current) {
|
|
4441
|
+
var next = current.next;
|
|
4442
|
+
var callback = current.callback;
|
|
4443
|
+
var errorHandler2 = current.errorHandler;
|
|
4444
|
+
var val = current.value;
|
|
4445
|
+
var context2 = current.context;
|
|
4446
|
+
current.value = null;
|
|
4447
|
+
current.callback = noop2;
|
|
4448
|
+
current.errorHandler = null;
|
|
4449
|
+
if (errorHandler2) {
|
|
4450
|
+
errorHandler2(new Error("abort"), val);
|
|
4451
|
+
}
|
|
4452
|
+
callback.call(context2, new Error("abort"));
|
|
4453
|
+
current.release(current);
|
|
4454
|
+
current = next;
|
|
4455
|
+
}
|
|
4456
|
+
self.drain = noop2;
|
|
4457
|
+
}
|
|
4435
4458
|
function error(handler) {
|
|
4436
4459
|
errorHandler = handler;
|
|
4437
4460
|
}
|
|
@@ -11084,7 +11107,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
11084
11107
|
var yargs_default = Yargs;
|
|
11085
11108
|
|
|
11086
11109
|
// ../../package.json
|
|
11087
|
-
var version = "5.
|
|
11110
|
+
var version = "5.11.0";
|
|
11088
11111
|
|
|
11089
11112
|
// ../../src/execa-utilities.ts
|
|
11090
11113
|
function isErrorExecaError(error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/shared-config",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.11.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",
|
|
@@ -42,17 +42,17 @@
|
|
|
42
42
|
"cosmiconfig-typescript-loader": "^6.2.0",
|
|
43
43
|
"execa": "^9.6.1",
|
|
44
44
|
"find-workspaces": "^0.3.1",
|
|
45
|
-
"fs-extra": "^11.3.
|
|
45
|
+
"fs-extra": "^11.3.3",
|
|
46
46
|
"prettier": "^3.7.4",
|
|
47
|
-
"@kitschpatrol/cspell-config": "5.
|
|
48
|
-
"@kitschpatrol/
|
|
49
|
-
"@kitschpatrol/
|
|
50
|
-
"@kitschpatrol/
|
|
51
|
-
"@kitschpatrol/
|
|
52
|
-
"@kitschpatrol/
|
|
53
|
-
"@kitschpatrol/
|
|
54
|
-
"@kitschpatrol/
|
|
55
|
-
"@kitschpatrol/
|
|
47
|
+
"@kitschpatrol/cspell-config": "5.11.0",
|
|
48
|
+
"@kitschpatrol/eslint-config": "5.11.0",
|
|
49
|
+
"@kitschpatrol/knip-config": "5.11.0",
|
|
50
|
+
"@kitschpatrol/prettier-config": "5.11.0",
|
|
51
|
+
"@kitschpatrol/mdat-config": "5.11.0",
|
|
52
|
+
"@kitschpatrol/typescript-config": "5.11.0",
|
|
53
|
+
"@kitschpatrol/repo-config": "5.11.0",
|
|
54
|
+
"@kitschpatrol/stylelint-config": "5.11.0",
|
|
55
|
+
"@kitschpatrol/remark-config": "5.11.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"globby": "^15.0.0",
|