@kitschpatrol/mdat-config 5.0.4 → 5.0.5
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 +9 -4
- package/package.json +3 -3
package/bin/cli.js
CHANGED
|
@@ -5541,7 +5541,7 @@ 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.5";
|
|
5545
5545
|
|
|
5546
5546
|
// ../../src/execa-utils.ts
|
|
5547
5547
|
function isErrorExecaError(error) {
|
|
@@ -5857,10 +5857,15 @@ async function executeCliCommand(logStream, positionalArguments, optionFlags, co
|
|
|
5857
5857
|
try {
|
|
5858
5858
|
const subprocess = execa(command2.name, resolvedArguments, {
|
|
5859
5859
|
cwd,
|
|
5860
|
-
env:
|
|
5860
|
+
env: {
|
|
5861
|
+
// Use colorful output unless NO_COLOR is set
|
|
5861
5862
|
// eslint-disable-next-line ts/naming-convention
|
|
5862
|
-
FORCE_COLOR: "true"
|
|
5863
|
-
|
|
5863
|
+
...process.env.NO_COLOR === void 0 ? { FORCE_COLOR: "true" } : {},
|
|
5864
|
+
// Quiet node for when processing *.config.ts files in Node 22
|
|
5865
|
+
// Suppress experimental type stripping warning with --no-warnings
|
|
5866
|
+
// eslint-disable-next-line ts/naming-convention
|
|
5867
|
+
NODE_OPTIONS: "--experimental-strip-types --disable-warning=ExperimentalWarning"
|
|
5868
|
+
},
|
|
5864
5869
|
preferLocal: true,
|
|
5865
5870
|
reject: false,
|
|
5866
5871
|
// Prevents throwing on non-zero exit code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/mdat-config",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.5",
|
|
4
4
|
"description": "MDAT configuration for @kitschpatrol/shared-config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shared-config",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"find-workspaces": "^0.3.1",
|
|
50
50
|
"fs-extra": "^11.3.0",
|
|
51
51
|
"mdat": "^0.10.0",
|
|
52
|
-
"prettier": "^3.
|
|
52
|
+
"prettier": "^3.5.0"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
|
-
"node": ">=22.
|
|
55
|
+
"node": ">=22.13.1",
|
|
56
56
|
"pnpm": ">=10.0.0"
|
|
57
57
|
},
|
|
58
58
|
"publishConfig": {
|