@kitschpatrol/cspell-config 5.0.7 → 5.1.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 +6 -5
- package/package.json +3 -2
package/bin/cli.js
CHANGED
|
@@ -627,6 +627,7 @@ var source_default = chalk;
|
|
|
627
627
|
|
|
628
628
|
// ../../src/command-builder.ts
|
|
629
629
|
import { cosmiconfig } from "cosmiconfig";
|
|
630
|
+
import { TypeScriptLoader as typeScriptLoader } from "cosmiconfig-typescript-loader";
|
|
630
631
|
import { execa } from "execa";
|
|
631
632
|
import fse2 from "fs-extra";
|
|
632
633
|
import fs3 from "node:fs";
|
|
@@ -5551,7 +5552,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
5551
5552
|
var yargs_default = Yargs;
|
|
5552
5553
|
|
|
5553
5554
|
// ../../package.json
|
|
5554
|
-
var version = "5.0
|
|
5555
|
+
var version = "5.1.0";
|
|
5555
5556
|
|
|
5556
5557
|
// ../../src/execa-utilities.ts
|
|
5557
5558
|
function isErrorExecaError(error) {
|
|
@@ -5862,11 +5863,11 @@ async function executeCliCommand(logStream, positionalArguments, optionFlags, co
|
|
|
5862
5863
|
env: {
|
|
5863
5864
|
// Use colorful output unless NO_COLOR is set
|
|
5864
5865
|
// eslint-disable-next-line ts/naming-convention
|
|
5865
|
-
...process.env.NO_COLOR === void 0 ? { FORCE_COLOR: "true" } : {}
|
|
5866
|
-
// Quiet
|
|
5866
|
+
...process.env.NO_COLOR === void 0 ? { FORCE_COLOR: "true" } : {}
|
|
5867
|
+
// Quiet Node when processing *.config.ts files in Node 22
|
|
5867
5868
|
// Suppress experimental type stripping warning with --no-warnings
|
|
5868
|
-
//
|
|
5869
|
-
NODE_OPTIONS:
|
|
5869
|
+
// TODO what's the story here on Node 20?
|
|
5870
|
+
// NODE_OPTIONS: '--experimental-strip-types --disable-warning=ExperimentalWarning',
|
|
5870
5871
|
},
|
|
5871
5872
|
preferLocal: true,
|
|
5872
5873
|
reject: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/cspell-config",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "CSpell configuration for @kitschpatrol/shared-config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shared-config",
|
|
@@ -46,12 +46,13 @@
|
|
|
46
46
|
"@pinojs/json-colorizer": "^4.0.0",
|
|
47
47
|
"case-police": "^1.0.0",
|
|
48
48
|
"cosmiconfig": "^9.0.0",
|
|
49
|
+
"cosmiconfig-typescript-loader": "^6.1.0",
|
|
49
50
|
"cspell": "^8.17.5",
|
|
50
51
|
"cspell-lib": "^8.17.5",
|
|
51
52
|
"execa": "^9.5.2",
|
|
52
53
|
"find-workspaces": "^0.3.1",
|
|
53
54
|
"fs-extra": "^11.3.0",
|
|
54
|
-
"prettier": "^3.5.
|
|
55
|
+
"prettier": "^3.5.3"
|
|
55
56
|
},
|
|
56
57
|
"engines": {
|
|
57
58
|
"node": ">=20.9.0"
|