@kitschpatrol/cspell-config 5.0.4 → 5.0.6
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 +17 -12
- package/dictionaries/case-police.json +2 -1
- package/dictionaries/kp-names.txt +4 -1
- package/dictionaries/kp-tech.txt +1 -0
- package/package.json +7 -7
package/bin/cli.js
CHANGED
|
@@ -5541,14 +5541,14 @@ var Yargs = YargsFactory(esm_default);
|
|
|
5541
5541
|
var yargs_default = Yargs;
|
|
5542
5542
|
|
|
5543
5543
|
// ../../package.json
|
|
5544
|
-
var version = "5.0.
|
|
5544
|
+
var version = "5.0.6";
|
|
5545
5545
|
|
|
5546
|
-
// ../../src/execa-
|
|
5546
|
+
// ../../src/execa-utilities.ts
|
|
5547
5547
|
function isErrorExecaError(error) {
|
|
5548
5548
|
return error instanceof Error && "exitCode" in error && typeof error.exitCode === "number";
|
|
5549
5549
|
}
|
|
5550
5550
|
|
|
5551
|
-
// ../../src/json-
|
|
5551
|
+
// ../../src/json-utilities.ts
|
|
5552
5552
|
import jsonColorizer from "@pinojs/json-colorizer";
|
|
5553
5553
|
|
|
5554
5554
|
// ../../node_modules/.pnpm/decircular@1.0.0/node_modules/decircular/index.js
|
|
@@ -5573,7 +5573,7 @@ function decircular(object) {
|
|
|
5573
5573
|
return internalDecircular(object);
|
|
5574
5574
|
}
|
|
5575
5575
|
|
|
5576
|
-
// ../../src/json-
|
|
5576
|
+
// ../../src/json-utilities.ts
|
|
5577
5577
|
var import_deepmerge = __toESM(require_cjs(), 1);
|
|
5578
5578
|
|
|
5579
5579
|
// ../../node_modules/.pnpm/json-stringify-pretty-compact@4.0.0/node_modules/json-stringify-pretty-compact/index.js
|
|
@@ -5655,7 +5655,7 @@ ${currentIndent}`
|
|
|
5655
5655
|
}(passedObj, "", 0);
|
|
5656
5656
|
}
|
|
5657
5657
|
|
|
5658
|
-
// ../../src/json-
|
|
5658
|
+
// ../../src/json-utilities.ts
|
|
5659
5659
|
function stringify2(object) {
|
|
5660
5660
|
return jsonColorizer(
|
|
5661
5661
|
stringify(decircular(object), {
|
|
@@ -5692,7 +5692,7 @@ function merge(destination, source, options = { arrayMerge: combineMerge }) {
|
|
|
5692
5692
|
return (0, import_deepmerge.default)(destination, source, options);
|
|
5693
5693
|
}
|
|
5694
5694
|
|
|
5695
|
-
// ../../src/path-
|
|
5695
|
+
// ../../src/path-utilities.ts
|
|
5696
5696
|
import { findWorkspaces, findWorkspacesRoot } from "find-workspaces";
|
|
5697
5697
|
import fse from "fs-extra";
|
|
5698
5698
|
import path2 from "node:path";
|
|
@@ -5726,7 +5726,7 @@ function getCwdOverride(option) {
|
|
|
5726
5726
|
return process.cwd();
|
|
5727
5727
|
}
|
|
5728
5728
|
|
|
5729
|
-
// ../../src/prettier-
|
|
5729
|
+
// ../../src/prettier-utilities.ts
|
|
5730
5730
|
import fs2 from "node:fs/promises";
|
|
5731
5731
|
async function formatTextAndSaveFile(filePath, content) {
|
|
5732
5732
|
try {
|
|
@@ -5749,7 +5749,7 @@ async function formatFileInPlace(filePath) {
|
|
|
5749
5749
|
}
|
|
5750
5750
|
}
|
|
5751
5751
|
|
|
5752
|
-
// ../../src/stream-
|
|
5752
|
+
// ../../src/stream-utilities.ts
|
|
5753
5753
|
import { Transform } from "node:stream";
|
|
5754
5754
|
function createStreamFilter(matcher) {
|
|
5755
5755
|
return new Transform({
|
|
@@ -5786,7 +5786,7 @@ async function streamToString(stream) {
|
|
|
5786
5786
|
});
|
|
5787
5787
|
}
|
|
5788
5788
|
|
|
5789
|
-
// ../../src/string-
|
|
5789
|
+
// ../../src/string-utilities.ts
|
|
5790
5790
|
function pluralize(text, quantity) {
|
|
5791
5791
|
return quantity === 1 ? text : text + "s";
|
|
5792
5792
|
}
|
|
@@ -5849,10 +5849,15 @@ async function executeCliCommand(logStream, positionalArguments, optionFlags, co
|
|
|
5849
5849
|
try {
|
|
5850
5850
|
const subprocess = execa(command2.name, resolvedArguments, {
|
|
5851
5851
|
cwd,
|
|
5852
|
-
env:
|
|
5852
|
+
env: {
|
|
5853
|
+
// Use colorful output unless NO_COLOR is set
|
|
5853
5854
|
// eslint-disable-next-line ts/naming-convention
|
|
5854
|
-
FORCE_COLOR: "true"
|
|
5855
|
-
|
|
5855
|
+
...process.env.NO_COLOR === void 0 ? { FORCE_COLOR: "true" } : {},
|
|
5856
|
+
// Quiet node for when processing *.config.ts files in Node 22
|
|
5857
|
+
// Suppress experimental type stripping warning with --no-warnings
|
|
5858
|
+
// eslint-disable-next-line ts/naming-convention
|
|
5859
|
+
NODE_OPTIONS: "--experimental-strip-types --disable-warning=ExperimentalWarning"
|
|
5860
|
+
},
|
|
5856
5861
|
preferLocal: true,
|
|
5857
5862
|
reject: false,
|
|
5858
5863
|
// Prevents throwing on non-zero exit code
|
|
@@ -194,6 +194,7 @@ Carmack
|
|
|
194
194
|
Carnett
|
|
195
195
|
Carrer
|
|
196
196
|
Carsten
|
|
197
|
+
Cascadia
|
|
197
198
|
Castiñeira
|
|
198
199
|
Cathal
|
|
199
200
|
Catie
|
|
@@ -235,6 +236,7 @@ Cofoco
|
|
|
235
236
|
Cohrs
|
|
236
237
|
Coill
|
|
237
238
|
Condon
|
|
239
|
+
Consolas
|
|
238
240
|
Copia
|
|
239
241
|
Corbin
|
|
240
242
|
Corbis
|
|
@@ -905,6 +907,7 @@ Nekoro
|
|
|
905
907
|
Nemerov
|
|
906
908
|
Nerburn
|
|
907
909
|
Nessen
|
|
910
|
+
Neue
|
|
908
911
|
Neumann
|
|
909
912
|
Nevarez
|
|
910
913
|
Newmark
|
|
@@ -1427,4 +1430,4 @@ Zoephel
|
|
|
1427
1430
|
Zoltan
|
|
1428
1431
|
Zucker
|
|
1429
1432
|
Zurkow
|
|
1430
|
-
Zutowski
|
|
1433
|
+
Zutowski
|
package/dictionaries/kp-tech.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/cspell-config",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"description": "CSpell configuration for @kitschpatrol/shared-config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shared-config",
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
"init/*"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@cspell/cspell-types": "^8.17.
|
|
45
|
+
"@cspell/cspell-types": "^8.17.5",
|
|
46
46
|
"@pinojs/json-colorizer": "^4.0.0",
|
|
47
|
-
"case-police": "^0.
|
|
47
|
+
"case-police": "^1.0.0",
|
|
48
48
|
"cosmiconfig": "^9.0.0",
|
|
49
|
-
"cspell": "^8.17.
|
|
50
|
-
"cspell-lib": "^8.17.
|
|
49
|
+
"cspell": "^8.17.5",
|
|
50
|
+
"cspell-lib": "^8.17.5",
|
|
51
51
|
"execa": "^9.5.2",
|
|
52
52
|
"find-workspaces": "^0.3.1",
|
|
53
53
|
"fs-extra": "^11.3.0",
|
|
54
|
-
"prettier": "^3.
|
|
54
|
+
"prettier": "^3.5.2"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
|
-
"node": ">=22.
|
|
57
|
+
"node": ">=22.13.1",
|
|
58
58
|
"pnpm": ">=10.0.0"
|
|
59
59
|
},
|
|
60
60
|
"publishConfig": {
|