@storm-software/config-tools 1.190.19 → 1.190.20
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/config.cjs +6 -2
- package/bin/config.js +6 -2
- package/dist/{chunk-44SHQAD4.cjs → chunk-4NI5G6NW.cjs} +10 -10
- package/dist/{chunk-VEYONVTU.js → chunk-7RS3LXLS.js} +1 -1
- package/dist/{chunk-5NAMOQCY.js → chunk-CXXYVRLX.js} +1 -1
- package/dist/{chunk-TIH4RSTL.js → chunk-EBVZQPBC.js} +1 -1
- package/dist/{chunk-UWI3QVYJ.js → chunk-K2ESWZ47.js} +2 -2
- package/dist/{chunk-MOXINQRL.js → chunk-KSIRSZH7.js} +1 -1
- package/dist/{chunk-QXMSQMVN.cjs → chunk-N344QHFB.cjs} +10 -10
- package/dist/{chunk-AZJQFL6W.cjs → chunk-NYO7XHLW.cjs} +6 -2
- package/dist/{chunk-R5BZDTQW.cjs → chunk-OSIUQTFQ.cjs} +2 -2
- package/dist/{chunk-FXQGOFJI.js → chunk-RT5536G5.js} +1 -1
- package/dist/{chunk-KRVACLYZ.cjs → chunk-RY5XPR3I.cjs} +3 -3
- package/dist/{chunk-4UFIHIMZ.js → chunk-U4N3RX22.js} +6 -2
- package/dist/{chunk-TW273ZN4.cjs → chunk-UKSAAYLN.cjs} +9 -9
- package/dist/{chunk-DFWIRJGH.cjs → chunk-VUFYY3YZ.cjs} +3 -3
- package/dist/config-file/get-config-file.cjs +6 -6
- package/dist/config-file/get-config-file.js +5 -5
- package/dist/config-file/index.cjs +6 -6
- package/dist/config-file/index.js +5 -5
- package/dist/create-storm-config.cjs +7 -7
- package/dist/create-storm-config.js +6 -6
- package/dist/get-config.cjs +8 -8
- package/dist/get-config.js +7 -7
- package/dist/index.cjs +8 -8
- package/dist/index.js +7 -7
- package/dist/logger/console.cjs +2 -2
- package/dist/logger/console.js +1 -1
- package/dist/logger/create-logger.cjs +3 -3
- package/dist/logger/create-logger.js +2 -2
- package/dist/logger/index.cjs +3 -3
- package/dist/logger/index.js +2 -2
- package/dist/utilities/index.cjs +5 -5
- package/dist/utilities/index.js +4 -4
- package/dist/utilities/process-handler.cjs +3 -3
- package/dist/utilities/process-handler.js +2 -2
- package/dist/utilities/toml.cjs +4 -4
- package/dist/utilities/toml.js +3 -3
- package/package.json +3 -3
package/bin/config.cjs
CHANGED
|
@@ -393,9 +393,13 @@ ${message.map(
|
|
|
393
393
|
depth2 + 1
|
|
394
394
|
)}`
|
|
395
395
|
).join("\n")}` : typeof message === "object" ? `
|
|
396
|
-
${Object.keys(message).filter(
|
|
396
|
+
${Object.keys(message).filter(
|
|
397
|
+
(key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
398
|
+
).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
|
|
397
399
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
398
|
-
(key2) => !skip.includes(
|
|
400
|
+
(key2) => !skip.map((k) => k.toLowerCase()).includes(
|
|
401
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
402
|
+
)
|
|
399
403
|
).length === 0 ? "{}" : formatLogMessage(
|
|
400
404
|
message[key],
|
|
401
405
|
{ prefix: `${prefix}--`, skip, sort },
|
package/bin/config.js
CHANGED
|
@@ -360,9 +360,13 @@ ${message.map(
|
|
|
360
360
|
depth2 + 1
|
|
361
361
|
)}`
|
|
362
362
|
).join("\n")}` : typeof message === "object" ? `
|
|
363
|
-
${Object.keys(message).filter(
|
|
363
|
+
${Object.keys(message).filter(
|
|
364
|
+
(key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
365
|
+
).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
|
|
364
366
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
365
|
-
(key2) => !skip.includes(
|
|
367
|
+
(key2) => !skip.map((k) => k.toLowerCase()).includes(
|
|
368
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
369
|
+
)
|
|
366
370
|
).length === 0 ? "{}" : formatLogMessage(
|
|
367
371
|
message[key],
|
|
368
372
|
{ prefix: `${prefix}--`, skip, sort },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkNYO7XHLWcjs = require('./chunk-NYO7XHLW.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunk7QBTVNMRcjs = require('./chunk-7QBTVNMR.cjs');
|
|
@@ -9,14 +9,14 @@ var _chunk7QBTVNMRcjs = require('./chunk-7QBTVNMR.cjs');
|
|
|
9
9
|
// src/logger/create-logger.ts
|
|
10
10
|
var _chalk = require('chalk'); var _chalk2 = _interopRequireDefault(_chalk);
|
|
11
11
|
async function createLogger(config) {
|
|
12
|
-
const writeFatal =
|
|
13
|
-
const writeError =
|
|
14
|
-
const writeWarning =
|
|
15
|
-
const writeInfo =
|
|
16
|
-
const writeSuccess =
|
|
17
|
-
const writeDebug =
|
|
18
|
-
const writePerformance =
|
|
19
|
-
const writeTrace =
|
|
12
|
+
const writeFatal = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.FATAL, config, { chalk: _chalk2.default });
|
|
13
|
+
const writeError = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.ERROR, config, { chalk: _chalk2.default });
|
|
14
|
+
const writeWarning = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.WARN, config, { chalk: _chalk2.default });
|
|
15
|
+
const writeInfo = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.INFO, config, { chalk: _chalk2.default });
|
|
16
|
+
const writeSuccess = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.SUCCESS, config, { chalk: _chalk2.default });
|
|
17
|
+
const writeDebug = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.DEBUG, config, { chalk: _chalk2.default });
|
|
18
|
+
const writePerformance = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.PERFORMANCE, config, { chalk: _chalk2.default });
|
|
19
|
+
const writeTrace = _chunkNYO7XHLWcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.TRACE, config, { chalk: _chalk2.default });
|
|
20
20
|
return {
|
|
21
21
|
fatal: writeFatal,
|
|
22
22
|
error: writeError,
|
|
@@ -26,7 +26,7 @@ async function createLogger(config) {
|
|
|
26
26
|
performance: writePerformance,
|
|
27
27
|
debug: writeDebug,
|
|
28
28
|
trace: writeTrace,
|
|
29
|
-
getStopwatch:
|
|
29
|
+
getStopwatch: _chunkNYO7XHLWcjs.getStopwatch
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getConfigFile
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-RT5536G5.js";
|
|
4
4
|
import {
|
|
5
5
|
applyDefaultConfig,
|
|
6
6
|
getPackageJsonConfig
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
formatLogMessage,
|
|
13
13
|
writeTrace,
|
|
14
14
|
writeWarning
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-U4N3RX22.js";
|
|
16
16
|
import {
|
|
17
17
|
setConfigEnv
|
|
18
18
|
} from "./chunk-SDSQ2HHF.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkVUFYY3YZcjs = require('./chunk-VUFYY3YZ.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -12,7 +12,7 @@ var _chunk3CNCDDWZcjs = require('./chunk-3CNCDDWZ.cjs');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkNYO7XHLWcjs = require('./chunk-NYO7XHLW.cjs');
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
var _chunkB2CQPVVLcjs = require('./chunk-B2CQPVVL.cjs');
|
|
@@ -38,10 +38,10 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
38
38
|
_workspaceRoot = _chunk3CNCDDWZcjs.findWorkspaceRoot.call(void 0, );
|
|
39
39
|
}
|
|
40
40
|
const configEnv = _chunkNHILCONIcjs.getConfigEnv.call(void 0, );
|
|
41
|
-
const configFile = await
|
|
41
|
+
const configFile = await _chunkVUFYY3YZcjs.getConfigFile.call(void 0, _workspaceRoot);
|
|
42
42
|
if (!configFile) {
|
|
43
43
|
if (!skipLogs) {
|
|
44
|
-
|
|
44
|
+
_chunkNYO7XHLWcjs.writeWarning.call(void 0,
|
|
45
45
|
"No Storm Workspace configuration file found in the current repository. Please ensure this is the expected behavior - you can add a `storm-workspace.json` file to the root of your workspace if it is not.\n",
|
|
46
46
|
{ logLevel: "all" }
|
|
47
47
|
);
|
|
@@ -72,7 +72,7 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
72
72
|
throw new Error(
|
|
73
73
|
`Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess', _3 => _3.message]) ? `: ${error.message}` : ""}
|
|
74
74
|
|
|
75
|
-
Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${
|
|
75
|
+
Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${_chunkNYO7XHLWcjs.formatLogMessage.call(void 0,
|
|
76
76
|
configInput
|
|
77
77
|
)}`,
|
|
78
78
|
{
|
|
@@ -117,9 +117,9 @@ var loadStormWorkspaceConfig = async (workspaceRoot, skipLogs = false) => {
|
|
|
117
117
|
);
|
|
118
118
|
_chunkB2CQPVVLcjs.setConfigEnv.call(void 0, config);
|
|
119
119
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
120
|
-
|
|
120
|
+
_chunkNYO7XHLWcjs.writeTrace.call(void 0,
|
|
121
121
|
`\u2699\uFE0F Using Storm Workspace configuration:
|
|
122
|
-
${
|
|
122
|
+
${_chunkNYO7XHLWcjs.formatLogMessage.call(void 0, config)}`,
|
|
123
123
|
config
|
|
124
124
|
);
|
|
125
125
|
}
|
|
@@ -139,16 +139,16 @@ var tryLoadStormWorkspaceConfig = async (workspaceRoot, skipLogs = true, useDefa
|
|
|
139
139
|
}
|
|
140
140
|
_chunkB2CQPVVLcjs.setConfigEnv.call(void 0, config);
|
|
141
141
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
142
|
-
|
|
142
|
+
_chunkNYO7XHLWcjs.writeTrace.call(void 0,
|
|
143
143
|
`\u2699\uFE0F Using Storm Workspace configuration:
|
|
144
|
-
${
|
|
144
|
+
${_chunkNYO7XHLWcjs.formatLogMessage.call(void 0, config)}`,
|
|
145
145
|
config
|
|
146
146
|
);
|
|
147
147
|
}
|
|
148
148
|
return config;
|
|
149
149
|
} catch (error) {
|
|
150
150
|
if (!skipLogs) {
|
|
151
|
-
|
|
151
|
+
_chunkNYO7XHLWcjs.writeWarning.call(void 0,
|
|
152
152
|
`\u26A0\uFE0F Failed to load Storm Workspace configuration: ${error}`,
|
|
153
153
|
{ logLevel: "all" }
|
|
154
154
|
);
|
|
@@ -905,9 +905,13 @@ ${message.map(
|
|
|
905
905
|
depth + 1
|
|
906
906
|
)}`
|
|
907
907
|
).join("\n")}` : typeof message === "object" ? `
|
|
908
|
-
${Object.keys(message).filter(
|
|
908
|
+
${Object.keys(message).filter(
|
|
909
|
+
(key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
910
|
+
).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
|
|
909
911
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
910
|
-
(key2) => !skip.includes(
|
|
912
|
+
(key2) => !skip.map((k) => k.toLowerCase()).includes(
|
|
913
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
914
|
+
)
|
|
911
915
|
).length === 0 ? "{}" : formatLogMessage(
|
|
912
916
|
message[key],
|
|
913
917
|
{ prefix: `${prefix}--`, skip, sort },
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkNYO7XHLWcjs = require('./chunk-NYO7XHLW.cjs');
|
|
4
4
|
|
|
5
5
|
// src/utilities/toml.ts
|
|
6
6
|
var _jtoml = require('@ltd/j-toml'); var _jtoml2 = _interopRequireDefault(_jtoml);
|
|
7
7
|
function parseCargoTomlWithTree(tree, projectRoot, projectName) {
|
|
8
8
|
const cargoTomlString = _optionalChain([tree, 'access', _ => _.read, 'call', _2 => _2(`${projectRoot}/Cargo.toml`), 'optionalAccess', _3 => _3.toString, 'call', _4 => _4()]);
|
|
9
9
|
if (!cargoTomlString) {
|
|
10
|
-
|
|
10
|
+
_chunkNYO7XHLWcjs.writeError.call(void 0, `Cannot find a Cargo.toml file in the ${projectName}`);
|
|
11
11
|
throw new Error();
|
|
12
12
|
}
|
|
13
13
|
return parseCargoToml(cargoTomlString);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkN344QHFBcjs = require('./chunk-N344QHFB.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunk3CNCDDWZcjs = require('./chunk-3CNCDDWZ.cjs');
|
|
8
8
|
|
|
9
9
|
// src/get-config.ts
|
|
10
10
|
function getConfig(workspaceRoot, skipLogs = false) {
|
|
11
|
-
return
|
|
11
|
+
return _chunkN344QHFBcjs.loadStormWorkspaceConfig.call(void 0, workspaceRoot, skipLogs);
|
|
12
12
|
}
|
|
13
13
|
function getWorkspaceConfig(skipLogs = true, options = {}) {
|
|
14
14
|
let workspaceRoot = options.workspaceRoot;
|
|
@@ -23,7 +23,7 @@ async function tryGetWorkspaceConfig(skipLogs = true, options = {}) {
|
|
|
23
23
|
if (!workspaceRoot) {
|
|
24
24
|
workspaceRoot = _chunk3CNCDDWZcjs.findWorkspaceRoot.call(void 0, options.cwd);
|
|
25
25
|
}
|
|
26
|
-
return
|
|
26
|
+
return _chunkN344QHFBcjs.tryLoadStormWorkspaceConfig.call(void 0,
|
|
27
27
|
workspaceRoot,
|
|
28
28
|
skipLogs,
|
|
29
29
|
options.useDefault
|
|
@@ -905,9 +905,13 @@ ${message.map(
|
|
|
905
905
|
depth + 1
|
|
906
906
|
)}`
|
|
907
907
|
).join("\n")}` : typeof message === "object" ? `
|
|
908
|
-
${Object.keys(message).filter(
|
|
908
|
+
${Object.keys(message).filter(
|
|
909
|
+
(key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
910
|
+
).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
|
|
909
911
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
910
|
-
(key2) => !skip.includes(
|
|
912
|
+
(key2) => !skip.map((k) => k.toLowerCase()).includes(
|
|
913
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
914
|
+
)
|
|
911
915
|
).length === 0 ? "{}" : formatLogMessage(
|
|
912
916
|
message[key],
|
|
913
917
|
{ prefix: `${prefix}--`, skip, sort },
|
|
@@ -3,31 +3,31 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkNYO7XHLWcjs = require('./chunk-NYO7XHLW.cjs');
|
|
7
7
|
|
|
8
8
|
// src/utilities/process-handler.ts
|
|
9
9
|
var exitWithError = (config) => {
|
|
10
|
-
|
|
10
|
+
_chunkNYO7XHLWcjs.writeFatal.call(void 0, "Exiting script with an error status...", config);
|
|
11
11
|
process.exit(1);
|
|
12
12
|
};
|
|
13
13
|
var exitWithSuccess = (config) => {
|
|
14
|
-
|
|
14
|
+
_chunkNYO7XHLWcjs.writeSuccess.call(void 0, "Script completed successfully. Exiting...", config);
|
|
15
15
|
process.exit(0);
|
|
16
16
|
};
|
|
17
17
|
var handleProcess = (config) => {
|
|
18
|
-
|
|
18
|
+
_chunkNYO7XHLWcjs.writeTrace.call(void 0,
|
|
19
19
|
`Using the following arguments to process the script: ${process.argv.join(", ")}`,
|
|
20
20
|
config
|
|
21
21
|
);
|
|
22
22
|
process.on("unhandledRejection", (error) => {
|
|
23
|
-
|
|
23
|
+
_chunkNYO7XHLWcjs.writeError.call(void 0,
|
|
24
24
|
`An Unhandled Rejection occurred while running the program: ${error}`,
|
|
25
25
|
config
|
|
26
26
|
);
|
|
27
27
|
exitWithError(config);
|
|
28
28
|
});
|
|
29
29
|
process.on("uncaughtException", (error) => {
|
|
30
|
-
|
|
30
|
+
_chunkNYO7XHLWcjs.writeError.call(void 0,
|
|
31
31
|
`An Uncaught Exception occurred while running the program: ${error.message}
|
|
32
32
|
Stacktrace: ${error.stack}`,
|
|
33
33
|
config
|
|
@@ -35,15 +35,15 @@ Stacktrace: ${error.stack}`,
|
|
|
35
35
|
exitWithError(config);
|
|
36
36
|
});
|
|
37
37
|
process.on("SIGTERM", (signal) => {
|
|
38
|
-
|
|
38
|
+
_chunkNYO7XHLWcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
|
|
39
39
|
exitWithError(config);
|
|
40
40
|
});
|
|
41
41
|
process.on("SIGINT", (signal) => {
|
|
42
|
-
|
|
42
|
+
_chunkNYO7XHLWcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
|
|
43
43
|
exitWithError(config);
|
|
44
44
|
});
|
|
45
45
|
process.on("SIGHUP", (signal) => {
|
|
46
|
-
|
|
46
|
+
_chunkNYO7XHLWcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
|
|
47
47
|
exitWithError(config);
|
|
48
48
|
});
|
|
49
49
|
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var _chunk3CNCDDWZcjs = require('./chunk-3CNCDDWZ.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkNYO7XHLWcjs = require('./chunk-NYO7XHLW.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
var _chunkBDATZ3UBcjs = require('./chunk-BDATZ3UB.cjs');
|
|
@@ -52,7 +52,7 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
|
52
52
|
let config = result.config;
|
|
53
53
|
const configFile = result.configFile;
|
|
54
54
|
if (config && configFile && Object.keys(config).length > 0 && !config.skipConfigLogging) {
|
|
55
|
-
|
|
55
|
+
_chunkNYO7XHLWcjs.writeTrace.call(void 0,
|
|
56
56
|
`Found Storm configuration file "${configFile.includes(`${workspacePath}/`) ? configFile.replace(`${workspacePath}/`, "") : configFile}" at "${workspacePath}"`,
|
|
57
57
|
{
|
|
58
58
|
logLevel: "all"
|
|
@@ -68,7 +68,7 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
|
68
68
|
for (const result2 of results) {
|
|
69
69
|
if (_optionalChain([result2, 'optionalAccess', _5 => _5.config]) && _optionalChain([result2, 'optionalAccess', _6 => _6.configFile]) && Object.keys(result2.config).length > 0) {
|
|
70
70
|
if (!config.skipConfigLogging && !result2.config.skipConfigLogging) {
|
|
71
|
-
|
|
71
|
+
_chunkNYO7XHLWcjs.writeTrace.call(void 0,
|
|
72
72
|
`Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`,
|
|
73
73
|
{
|
|
74
74
|
logLevel: "all"
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkVUFYY3YZcjs = require('../chunk-VUFYY3YZ.cjs');
|
|
5
5
|
require('../chunk-3COHMHPU.cjs');
|
|
6
|
-
require('../chunk-
|
|
6
|
+
require('../chunk-UKSAAYLN.cjs');
|
|
7
7
|
require('../chunk-6Y623TCS.cjs');
|
|
8
|
-
require('../chunk-
|
|
8
|
+
require('../chunk-OSIUQTFQ.cjs');
|
|
9
9
|
require('../chunk-EMO3BY53.cjs');
|
|
10
10
|
require('../chunk-2WBD2G3E.cjs');
|
|
11
11
|
require('../chunk-CFXT4ZAW.cjs');
|
|
12
12
|
require('../chunk-3CNCDDWZ.cjs');
|
|
13
13
|
require('../chunk-NJFLUTGH.cjs');
|
|
14
14
|
require('../chunk-7PV6L7I7.cjs');
|
|
15
|
-
require('../chunk-
|
|
16
|
-
require('../chunk-
|
|
15
|
+
require('../chunk-4NI5G6NW.cjs');
|
|
16
|
+
require('../chunk-NYO7XHLW.cjs');
|
|
17
17
|
require('../chunk-L4YHJZ6Q.cjs');
|
|
18
18
|
require('../chunk-LOY6ICHZ.cjs');
|
|
19
19
|
require('../chunk-EC2KPWRG.cjs');
|
|
@@ -25,4 +25,4 @@ require('../chunk-7QBTVNMR.cjs');
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
exports.getConfigFile =
|
|
28
|
+
exports.getConfigFile = _chunkVUFYY3YZcjs.getConfigFile; exports.getConfigFileByName = _chunkVUFYY3YZcjs.getConfigFileByName;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getConfigFile,
|
|
3
3
|
getConfigFileByName
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-RT5536G5.js";
|
|
5
5
|
import "../chunk-UKGRDKIH.js";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-KSIRSZH7.js";
|
|
7
7
|
import "../chunk-EENQN6N2.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-7RS3LXLS.js";
|
|
9
9
|
import "../chunk-XEHBJ73S.js";
|
|
10
10
|
import "../chunk-KSMN3HSC.js";
|
|
11
11
|
import "../chunk-RGET2UQV.js";
|
|
12
12
|
import "../chunk-LF3SAK2O.js";
|
|
13
13
|
import "../chunk-RUKM6FCF.js";
|
|
14
14
|
import "../chunk-RRKB32OH.js";
|
|
15
|
-
import "../chunk-
|
|
16
|
-
import "../chunk-
|
|
15
|
+
import "../chunk-CXXYVRLX.js";
|
|
16
|
+
import "../chunk-U4N3RX22.js";
|
|
17
17
|
import "../chunk-5DQF4GNF.js";
|
|
18
18
|
import "../chunk-HVVJHTFS.js";
|
|
19
19
|
import "../chunk-ZFNAUMQS.js";
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkVUFYY3YZcjs = require('../chunk-VUFYY3YZ.cjs');
|
|
6
6
|
require('../chunk-3COHMHPU.cjs');
|
|
7
|
-
require('../chunk-
|
|
7
|
+
require('../chunk-UKSAAYLN.cjs');
|
|
8
8
|
require('../chunk-6Y623TCS.cjs');
|
|
9
|
-
require('../chunk-
|
|
9
|
+
require('../chunk-OSIUQTFQ.cjs');
|
|
10
10
|
require('../chunk-EMO3BY53.cjs');
|
|
11
11
|
require('../chunk-2WBD2G3E.cjs');
|
|
12
12
|
require('../chunk-CFXT4ZAW.cjs');
|
|
13
13
|
require('../chunk-3CNCDDWZ.cjs');
|
|
14
14
|
require('../chunk-NJFLUTGH.cjs');
|
|
15
15
|
require('../chunk-7PV6L7I7.cjs');
|
|
16
|
-
require('../chunk-
|
|
17
|
-
require('../chunk-
|
|
16
|
+
require('../chunk-4NI5G6NW.cjs');
|
|
17
|
+
require('../chunk-NYO7XHLW.cjs');
|
|
18
18
|
require('../chunk-L4YHJZ6Q.cjs');
|
|
19
19
|
require('../chunk-LOY6ICHZ.cjs');
|
|
20
20
|
require('../chunk-EC2KPWRG.cjs');
|
|
@@ -26,4 +26,4 @@ require('../chunk-7QBTVNMR.cjs');
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
exports.getConfigFile =
|
|
29
|
+
exports.getConfigFile = _chunkVUFYY3YZcjs.getConfigFile; exports.getConfigFileByName = _chunkVUFYY3YZcjs.getConfigFileByName;
|
|
@@ -2,19 +2,19 @@ import "../chunk-2AVLCXLT.js";
|
|
|
2
2
|
import {
|
|
3
3
|
getConfigFile,
|
|
4
4
|
getConfigFileByName
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-RT5536G5.js";
|
|
6
6
|
import "../chunk-UKGRDKIH.js";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-KSIRSZH7.js";
|
|
8
8
|
import "../chunk-EENQN6N2.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-7RS3LXLS.js";
|
|
10
10
|
import "../chunk-XEHBJ73S.js";
|
|
11
11
|
import "../chunk-KSMN3HSC.js";
|
|
12
12
|
import "../chunk-RGET2UQV.js";
|
|
13
13
|
import "../chunk-LF3SAK2O.js";
|
|
14
14
|
import "../chunk-RUKM6FCF.js";
|
|
15
15
|
import "../chunk-RRKB32OH.js";
|
|
16
|
-
import "../chunk-
|
|
17
|
-
import "../chunk-
|
|
16
|
+
import "../chunk-CXXYVRLX.js";
|
|
17
|
+
import "../chunk-U4N3RX22.js";
|
|
18
18
|
import "../chunk-5DQF4GNF.js";
|
|
19
19
|
import "../chunk-HVVJHTFS.js";
|
|
20
20
|
import "../chunk-ZFNAUMQS.js";
|
|
@@ -3,20 +3,20 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('./chunk-
|
|
6
|
+
var _chunkN344QHFBcjs = require('./chunk-N344QHFB.cjs');
|
|
7
|
+
require('./chunk-VUFYY3YZ.cjs');
|
|
8
8
|
require('./chunk-3COHMHPU.cjs');
|
|
9
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-UKSAAYLN.cjs');
|
|
10
10
|
require('./chunk-6Y623TCS.cjs');
|
|
11
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-OSIUQTFQ.cjs');
|
|
12
12
|
require('./chunk-EMO3BY53.cjs');
|
|
13
13
|
require('./chunk-2WBD2G3E.cjs');
|
|
14
14
|
require('./chunk-CFXT4ZAW.cjs');
|
|
15
15
|
require('./chunk-3CNCDDWZ.cjs');
|
|
16
16
|
require('./chunk-NJFLUTGH.cjs');
|
|
17
17
|
require('./chunk-7PV6L7I7.cjs');
|
|
18
|
-
require('./chunk-
|
|
19
|
-
require('./chunk-
|
|
18
|
+
require('./chunk-4NI5G6NW.cjs');
|
|
19
|
+
require('./chunk-NYO7XHLW.cjs');
|
|
20
20
|
require('./chunk-L4YHJZ6Q.cjs');
|
|
21
21
|
require('./chunk-LOY6ICHZ.cjs');
|
|
22
22
|
require('./chunk-EC2KPWRG.cjs');
|
|
@@ -32,4 +32,4 @@ require('./chunk-7QBTVNMR.cjs');
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
exports.createConfigExtension =
|
|
35
|
+
exports.createConfigExtension = _chunkN344QHFBcjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkN344QHFBcjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkN344QHFBcjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkN344QHFBcjs.tryLoadStormWorkspaceConfig;
|
|
@@ -3,20 +3,20 @@ import {
|
|
|
3
3
|
createStormWorkspaceConfig,
|
|
4
4
|
loadStormWorkspaceConfig,
|
|
5
5
|
tryLoadStormWorkspaceConfig
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-K2ESWZ47.js";
|
|
7
|
+
import "./chunk-RT5536G5.js";
|
|
8
8
|
import "./chunk-UKGRDKIH.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-KSIRSZH7.js";
|
|
10
10
|
import "./chunk-EENQN6N2.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-7RS3LXLS.js";
|
|
12
12
|
import "./chunk-XEHBJ73S.js";
|
|
13
13
|
import "./chunk-KSMN3HSC.js";
|
|
14
14
|
import "./chunk-RGET2UQV.js";
|
|
15
15
|
import "./chunk-LF3SAK2O.js";
|
|
16
16
|
import "./chunk-RUKM6FCF.js";
|
|
17
17
|
import "./chunk-RRKB32OH.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-CXXYVRLX.js";
|
|
19
|
+
import "./chunk-U4N3RX22.js";
|
|
20
20
|
import "./chunk-5DQF4GNF.js";
|
|
21
21
|
import "./chunk-HVVJHTFS.js";
|
|
22
22
|
import "./chunk-ZFNAUMQS.js";
|
package/dist/get-config.cjs
CHANGED
|
@@ -2,21 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
5
|
+
var _chunkRY5XPR3Icjs = require('./chunk-RY5XPR3I.cjs');
|
|
6
|
+
require('./chunk-N344QHFB.cjs');
|
|
7
|
+
require('./chunk-VUFYY3YZ.cjs');
|
|
8
8
|
require('./chunk-3COHMHPU.cjs');
|
|
9
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-UKSAAYLN.cjs');
|
|
10
10
|
require('./chunk-6Y623TCS.cjs');
|
|
11
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-OSIUQTFQ.cjs');
|
|
12
12
|
require('./chunk-EMO3BY53.cjs');
|
|
13
13
|
require('./chunk-2WBD2G3E.cjs');
|
|
14
14
|
require('./chunk-CFXT4ZAW.cjs');
|
|
15
15
|
require('./chunk-3CNCDDWZ.cjs');
|
|
16
16
|
require('./chunk-NJFLUTGH.cjs');
|
|
17
17
|
require('./chunk-7PV6L7I7.cjs');
|
|
18
|
-
require('./chunk-
|
|
19
|
-
require('./chunk-
|
|
18
|
+
require('./chunk-4NI5G6NW.cjs');
|
|
19
|
+
require('./chunk-NYO7XHLW.cjs');
|
|
20
20
|
require('./chunk-L4YHJZ6Q.cjs');
|
|
21
21
|
require('./chunk-LOY6ICHZ.cjs');
|
|
22
22
|
require('./chunk-EC2KPWRG.cjs');
|
|
@@ -31,4 +31,4 @@ require('./chunk-7QBTVNMR.cjs');
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
exports.getConfig =
|
|
34
|
+
exports.getConfig = _chunkRY5XPR3Icjs.getConfig; exports.getWorkspaceConfig = _chunkRY5XPR3Icjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkRY5XPR3Icjs.tryGetWorkspaceConfig;
|
package/dist/get-config.js
CHANGED
|
@@ -2,21 +2,21 @@ import {
|
|
|
2
2
|
getConfig,
|
|
3
3
|
getWorkspaceConfig,
|
|
4
4
|
tryGetWorkspaceConfig
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-EBVZQPBC.js";
|
|
6
|
+
import "./chunk-K2ESWZ47.js";
|
|
7
|
+
import "./chunk-RT5536G5.js";
|
|
8
8
|
import "./chunk-UKGRDKIH.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-KSIRSZH7.js";
|
|
10
10
|
import "./chunk-EENQN6N2.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-7RS3LXLS.js";
|
|
12
12
|
import "./chunk-XEHBJ73S.js";
|
|
13
13
|
import "./chunk-KSMN3HSC.js";
|
|
14
14
|
import "./chunk-RGET2UQV.js";
|
|
15
15
|
import "./chunk-LF3SAK2O.js";
|
|
16
16
|
import "./chunk-RUKM6FCF.js";
|
|
17
17
|
import "./chunk-RRKB32OH.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-CXXYVRLX.js";
|
|
19
|
+
import "./chunk-U4N3RX22.js";
|
|
20
20
|
import "./chunk-5DQF4GNF.js";
|
|
21
21
|
import "./chunk-HVVJHTFS.js";
|
|
22
22
|
import "./chunk-ZFNAUMQS.js";
|
package/dist/index.cjs
CHANGED
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkRY5XPR3Icjs = require('./chunk-RY5XPR3I.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkN344QHFBcjs = require('./chunk-N344QHFB.cjs');
|
|
12
12
|
require('./chunk-IWD6YQKX.cjs');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkVUFYY3YZcjs = require('./chunk-VUFYY3YZ.cjs');
|
|
17
17
|
require('./chunk-3COHMHPU.cjs');
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkUKSAAYLNcjs = require('./chunk-UKSAAYLN.cjs');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
@@ -31,7 +31,7 @@ var _chunk6Y623TCScjs = require('./chunk-6Y623TCS.cjs');
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
34
|
+
var _chunkOSIUQTFQcjs = require('./chunk-OSIUQTFQ.cjs');
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
|
|
@@ -54,7 +54,7 @@ require('./chunk-NJFLUTGH.cjs');
|
|
|
54
54
|
require('./chunk-7PV6L7I7.cjs');
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
var
|
|
57
|
+
var _chunk4NI5G6NWcjs = require('./chunk-4NI5G6NW.cjs');
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
|
|
@@ -69,7 +69,7 @@ var _chunk44SHQAD4cjs = require('./chunk-44SHQAD4.cjs');
|
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
var
|
|
72
|
+
var _chunkNYO7XHLWcjs = require('./chunk-NYO7XHLW.cjs');
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
|
|
@@ -198,4 +198,4 @@ var _chunk7QBTVNMRcjs = require('./chunk-7QBTVNMR.cjs');
|
|
|
198
198
|
|
|
199
199
|
|
|
200
200
|
|
|
201
|
-
exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.LogLevel = _chunk7QBTVNMRcjs.LogLevel; exports.LogLevelLabel = _chunk7QBTVNMRcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.brandIcon =
|
|
201
|
+
exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.LogLevel = _chunk7QBTVNMRcjs.LogLevel; exports.LogLevelLabel = _chunk7QBTVNMRcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.brandIcon = _chunkNYO7XHLWcjs.brandIcon; exports.correctPaths = _chunkBDATZ3UBcjs.correctPaths; exports.createConfigExtension = _chunkN344QHFBcjs.createConfigExtension; exports.createLogger = _chunk4NI5G6NWcjs.createLogger; exports.createStormWorkspaceConfig = _chunkN344QHFBcjs.createStormWorkspaceConfig; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunkUKSAAYLNcjs.exitWithError; exports.exitWithSuccess = _chunkUKSAAYLNcjs.exitWithSuccess; exports.extname = _chunkBDATZ3UBcjs.extname; exports.findFileName = _chunk2WBD2G3Ecjs.findFileName; exports.findFilePath = _chunk2WBD2G3Ecjs.findFilePath; exports.findWorkspaceRoot = _chunk3CNCDDWZcjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunk3CNCDDWZcjs.findWorkspaceRootSafe; exports.format = _chunkBDATZ3UBcjs.format; exports.formatLogMessage = _chunkNYO7XHLWcjs.formatLogMessage; exports.formatTimestamp = _chunkWQJYIPSLcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getColor = _chunkL4YHJZ6Qcjs.getColor; exports.getColors = _chunkL4YHJZ6Qcjs.getColors; exports.getConfig = _chunkRY5XPR3Icjs.getConfig; exports.getConfigEnv = _chunkNHILCONIcjs.getConfigEnv; exports.getConfigFile = _chunkVUFYY3YZcjs.getConfigFile; exports.getConfigFileByName = _chunkVUFYY3YZcjs.getConfigFileByName; exports.getExtensionEnv = _chunkNHILCONIcjs.getExtensionEnv; exports.getGradient = _chunkL4YHJZ6Qcjs.getGradient; exports.getLogFn = _chunkNYO7XHLWcjs.getLogFn; exports.getLogLevel = _chunkJWLDCEBZcjs.getLogLevel; exports.getLogLevelLabel = _chunkJWLDCEBZcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkNYO7XHLWcjs.getStopwatch; exports.getWorkspaceConfig = _chunkRY5XPR3Icjs.getWorkspaceConfig; exports.handleProcess = _chunkUKSAAYLNcjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunkJWLDCEBZcjs.isVerbose; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkN344QHFBcjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkOSIUQTFQcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkOSIUQTFQcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkOSIUQTFQcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkOSIUQTFQcjs.parseCargoTomlWithTree; exports.relative = _chunkBDATZ3UBcjs.relative; exports.removeExtension = _chunk2WBD2G3Ecjs.removeExtension; exports.resolve = _chunkBDATZ3UBcjs.resolve; exports.run = _chunk6Y623TCScjs.run; exports.runAsync = _chunk6Y623TCScjs.runAsync; exports.sep = _chunkBDATZ3UBcjs.sep; exports.setConfigEnv = _chunkB2CQPVVLcjs.setConfigEnv; exports.setExtensionEnv = _chunkB2CQPVVLcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkOSIUQTFQcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkRY5XPR3Icjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkN344QHFBcjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkNYO7XHLWcjs.writeDebug; exports.writeError = _chunkNYO7XHLWcjs.writeError; exports.writeFatal = _chunkNYO7XHLWcjs.writeFatal; exports.writeInfo = _chunkNYO7XHLWcjs.writeInfo; exports.writePerformance = _chunkNYO7XHLWcjs.writePerformance; exports.writeSuccess = _chunkNYO7XHLWcjs.writeSuccess; exports.writeSystem = _chunkNYO7XHLWcjs.writeSystem; exports.writeTrace = _chunkNYO7XHLWcjs.writeTrace; exports.writeWarning = _chunkNYO7XHLWcjs.writeWarning;
|
package/dist/index.js
CHANGED
|
@@ -2,24 +2,24 @@ import {
|
|
|
2
2
|
getConfig,
|
|
3
3
|
getWorkspaceConfig,
|
|
4
4
|
tryGetWorkspaceConfig
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-EBVZQPBC.js";
|
|
6
6
|
import {
|
|
7
7
|
createConfigExtension,
|
|
8
8
|
createStormWorkspaceConfig,
|
|
9
9
|
loadStormWorkspaceConfig,
|
|
10
10
|
tryLoadStormWorkspaceConfig
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-K2ESWZ47.js";
|
|
12
12
|
import "./chunk-2AVLCXLT.js";
|
|
13
13
|
import {
|
|
14
14
|
getConfigFile,
|
|
15
15
|
getConfigFileByName
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-RT5536G5.js";
|
|
17
17
|
import "./chunk-UKGRDKIH.js";
|
|
18
18
|
import {
|
|
19
19
|
exitWithError,
|
|
20
20
|
exitWithSuccess,
|
|
21
21
|
handleProcess
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-KSIRSZH7.js";
|
|
23
23
|
import {
|
|
24
24
|
LARGE_BUFFER,
|
|
25
25
|
run,
|
|
@@ -31,7 +31,7 @@ import {
|
|
|
31
31
|
parseCargoToml,
|
|
32
32
|
parseCargoTomlWithTree,
|
|
33
33
|
stringifyCargoToml
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-7RS3LXLS.js";
|
|
35
35
|
import {
|
|
36
36
|
applyWorkspaceBaseTokens,
|
|
37
37
|
applyWorkspaceProjectTokens,
|
|
@@ -54,7 +54,7 @@ import "./chunk-RUKM6FCF.js";
|
|
|
54
54
|
import "./chunk-RRKB32OH.js";
|
|
55
55
|
import {
|
|
56
56
|
createLogger
|
|
57
|
-
} from "./chunk-
|
|
57
|
+
} from "./chunk-CXXYVRLX.js";
|
|
58
58
|
import {
|
|
59
59
|
brandIcon,
|
|
60
60
|
formatLogMessage,
|
|
@@ -69,7 +69,7 @@ import {
|
|
|
69
69
|
writeSystem,
|
|
70
70
|
writeTrace,
|
|
71
71
|
writeWarning
|
|
72
|
-
} from "./chunk-
|
|
72
|
+
} from "./chunk-U4N3RX22.js";
|
|
73
73
|
import {
|
|
74
74
|
DEFAULT_COLOR_CONFIG,
|
|
75
75
|
getColor,
|
package/dist/logger/console.cjs
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkNYO7XHLWcjs = require('../chunk-NYO7XHLW.cjs');
|
|
16
16
|
require('../chunk-L4YHJZ6Q.cjs');
|
|
17
17
|
require('../chunk-LOY6ICHZ.cjs');
|
|
18
18
|
require('../chunk-EC2KPWRG.cjs');
|
|
@@ -34,4 +34,4 @@ require('../chunk-7QBTVNMR.cjs');
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
exports.brandIcon =
|
|
37
|
+
exports.brandIcon = _chunkNYO7XHLWcjs.brandIcon; exports.formatLogMessage = _chunkNYO7XHLWcjs.formatLogMessage; exports.getLogFn = _chunkNYO7XHLWcjs.getLogFn; exports.getStopwatch = _chunkNYO7XHLWcjs.getStopwatch; exports.writeDebug = _chunkNYO7XHLWcjs.writeDebug; exports.writeError = _chunkNYO7XHLWcjs.writeError; exports.writeFatal = _chunkNYO7XHLWcjs.writeFatal; exports.writeInfo = _chunkNYO7XHLWcjs.writeInfo; exports.writePerformance = _chunkNYO7XHLWcjs.writePerformance; exports.writeSuccess = _chunkNYO7XHLWcjs.writeSuccess; exports.writeSystem = _chunkNYO7XHLWcjs.writeSystem; exports.writeTrace = _chunkNYO7XHLWcjs.writeTrace; exports.writeWarning = _chunkNYO7XHLWcjs.writeWarning;
|
package/dist/logger/console.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunk4NI5G6NWcjs = require('../chunk-4NI5G6NW.cjs');
|
|
4
|
+
require('../chunk-NYO7XHLW.cjs');
|
|
5
5
|
require('../chunk-L4YHJZ6Q.cjs');
|
|
6
6
|
require('../chunk-LOY6ICHZ.cjs');
|
|
7
7
|
require('../chunk-EC2KPWRG.cjs');
|
|
@@ -11,4 +11,4 @@ require('../chunk-JWLDCEBZ.cjs');
|
|
|
11
11
|
require('../chunk-7QBTVNMR.cjs');
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.createLogger =
|
|
14
|
+
exports.createLogger = _chunk4NI5G6NWcjs.createLogger;
|
package/dist/logger/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-7PV6L7I7.cjs');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk4NI5G6NWcjs = require('../chunk-4NI5G6NW.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ var _chunk44SHQAD4cjs = require('../chunk-44SHQAD4.cjs');
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
var
|
|
19
|
+
var _chunkNYO7XHLWcjs = require('../chunk-NYO7XHLW.cjs');
|
|
20
20
|
require('../chunk-L4YHJZ6Q.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
@@ -58,4 +58,4 @@ require('../chunk-7QBTVNMR.cjs');
|
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
|
|
61
|
-
exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.brandIcon =
|
|
61
|
+
exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.brandIcon = _chunkNYO7XHLWcjs.brandIcon; exports.createLogger = _chunk4NI5G6NWcjs.createLogger; exports.formatLogMessage = _chunkNYO7XHLWcjs.formatLogMessage; exports.formatTimestamp = _chunkWQJYIPSLcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getLogFn = _chunkNYO7XHLWcjs.getLogFn; exports.getLogLevel = _chunkJWLDCEBZcjs.getLogLevel; exports.getLogLevelLabel = _chunkJWLDCEBZcjs.getLogLevelLabel; exports.getStopwatch = _chunkNYO7XHLWcjs.getStopwatch; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunkJWLDCEBZcjs.isVerbose; exports.writeDebug = _chunkNYO7XHLWcjs.writeDebug; exports.writeError = _chunkNYO7XHLWcjs.writeError; exports.writeFatal = _chunkNYO7XHLWcjs.writeFatal; exports.writeInfo = _chunkNYO7XHLWcjs.writeInfo; exports.writePerformance = _chunkNYO7XHLWcjs.writePerformance; exports.writeSuccess = _chunkNYO7XHLWcjs.writeSuccess; exports.writeSystem = _chunkNYO7XHLWcjs.writeSystem; exports.writeTrace = _chunkNYO7XHLWcjs.writeTrace; exports.writeWarning = _chunkNYO7XHLWcjs.writeWarning;
|
package/dist/logger/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../chunk-RRKB32OH.js";
|
|
2
2
|
import {
|
|
3
3
|
createLogger
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-CXXYVRLX.js";
|
|
5
5
|
import {
|
|
6
6
|
brandIcon,
|
|
7
7
|
formatLogMessage,
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
writeSystem,
|
|
17
17
|
writeTrace,
|
|
18
18
|
writeWarning
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-U4N3RX22.js";
|
|
20
20
|
import "../chunk-5DQF4GNF.js";
|
|
21
21
|
import {
|
|
22
22
|
getChalk
|
package/dist/utilities/index.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkUKSAAYLNcjs = require('../chunk-UKSAAYLN.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -15,7 +15,7 @@ var _chunk6Y623TCScjs = require('../chunk-6Y623TCS.cjs');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkOSIUQTFQcjs = require('../chunk-OSIUQTFQ.cjs');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
@@ -36,8 +36,8 @@ var _chunkCFXT4ZAWcjs = require('../chunk-CFXT4ZAW.cjs');
|
|
|
36
36
|
var _chunk3CNCDDWZcjs = require('../chunk-3CNCDDWZ.cjs');
|
|
37
37
|
require('../chunk-NJFLUTGH.cjs');
|
|
38
38
|
require('../chunk-7PV6L7I7.cjs');
|
|
39
|
-
require('../chunk-
|
|
40
|
-
require('../chunk-
|
|
39
|
+
require('../chunk-4NI5G6NW.cjs');
|
|
40
|
+
require('../chunk-NYO7XHLW.cjs');
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
|
|
@@ -106,4 +106,4 @@ require('../chunk-7QBTVNMR.cjs');
|
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.correctPaths = _chunkBDATZ3UBcjs.correctPaths; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError =
|
|
109
|
+
exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.correctPaths = _chunkBDATZ3UBcjs.correctPaths; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunkUKSAAYLNcjs.exitWithError; exports.exitWithSuccess = _chunkUKSAAYLNcjs.exitWithSuccess; exports.extname = _chunkBDATZ3UBcjs.extname; exports.findFileName = _chunk2WBD2G3Ecjs.findFileName; exports.findFilePath = _chunk2WBD2G3Ecjs.findFilePath; exports.findWorkspaceRoot = _chunk3CNCDDWZcjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunk3CNCDDWZcjs.findWorkspaceRootSafe; exports.format = _chunkBDATZ3UBcjs.format; exports.getColor = _chunkL4YHJZ6Qcjs.getColor; exports.getColors = _chunkL4YHJZ6Qcjs.getColors; exports.getGradient = _chunkL4YHJZ6Qcjs.getGradient; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.handleProcess = _chunkUKSAAYLNcjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.modifyCargoNestedTable = _chunkOSIUQTFQcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkOSIUQTFQcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkOSIUQTFQcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkOSIUQTFQcjs.parseCargoTomlWithTree; exports.relative = _chunkBDATZ3UBcjs.relative; exports.removeExtension = _chunk2WBD2G3Ecjs.removeExtension; exports.resolve = _chunkBDATZ3UBcjs.resolve; exports.run = _chunk6Y623TCScjs.run; exports.runAsync = _chunk6Y623TCScjs.runAsync; exports.sep = _chunkBDATZ3UBcjs.sep; exports.stringifyCargoToml = _chunkOSIUQTFQcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath;
|
package/dist/utilities/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
exitWithError,
|
|
4
4
|
exitWithSuccess,
|
|
5
5
|
handleProcess
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-KSIRSZH7.js";
|
|
7
7
|
import {
|
|
8
8
|
LARGE_BUFFER,
|
|
9
9
|
run,
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
parseCargoToml,
|
|
16
16
|
parseCargoTomlWithTree,
|
|
17
17
|
stringifyCargoToml
|
|
18
|
-
} from "../chunk-
|
|
18
|
+
} from "../chunk-7RS3LXLS.js";
|
|
19
19
|
import {
|
|
20
20
|
applyWorkspaceBaseTokens,
|
|
21
21
|
applyWorkspaceProjectTokens,
|
|
@@ -36,8 +36,8 @@ import {
|
|
|
36
36
|
} from "../chunk-LF3SAK2O.js";
|
|
37
37
|
import "../chunk-RUKM6FCF.js";
|
|
38
38
|
import "../chunk-RRKB32OH.js";
|
|
39
|
-
import "../chunk-
|
|
40
|
-
import "../chunk-
|
|
39
|
+
import "../chunk-CXXYVRLX.js";
|
|
40
|
+
import "../chunk-U4N3RX22.js";
|
|
41
41
|
import {
|
|
42
42
|
DEFAULT_COLOR_CONFIG,
|
|
43
43
|
getColor,
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../chunk-
|
|
5
|
+
var _chunkUKSAAYLNcjs = require('../chunk-UKSAAYLN.cjs');
|
|
6
|
+
require('../chunk-NYO7XHLW.cjs');
|
|
7
7
|
require('../chunk-L4YHJZ6Q.cjs');
|
|
8
8
|
require('../chunk-LOY6ICHZ.cjs');
|
|
9
9
|
require('../chunk-EC2KPWRG.cjs');
|
|
@@ -15,4 +15,4 @@ require('../chunk-7QBTVNMR.cjs');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.exitWithError =
|
|
18
|
+
exports.exitWithError = _chunkUKSAAYLNcjs.exitWithError; exports.exitWithSuccess = _chunkUKSAAYLNcjs.exitWithSuccess; exports.handleProcess = _chunkUKSAAYLNcjs.handleProcess;
|
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
exitWithError,
|
|
3
3
|
exitWithSuccess,
|
|
4
4
|
handleProcess
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-KSIRSZH7.js";
|
|
6
|
+
import "../chunk-U4N3RX22.js";
|
|
7
7
|
import "../chunk-5DQF4GNF.js";
|
|
8
8
|
import "../chunk-HVVJHTFS.js";
|
|
9
9
|
import "../chunk-ZFNAUMQS.js";
|
package/dist/utilities/toml.cjs
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkOSIUQTFQcjs = require('../chunk-OSIUQTFQ.cjs');
|
|
8
8
|
require('../chunk-7PV6L7I7.cjs');
|
|
9
|
-
require('../chunk-
|
|
10
|
-
require('../chunk-
|
|
9
|
+
require('../chunk-4NI5G6NW.cjs');
|
|
10
|
+
require('../chunk-NYO7XHLW.cjs');
|
|
11
11
|
require('../chunk-L4YHJZ6Q.cjs');
|
|
12
12
|
require('../chunk-LOY6ICHZ.cjs');
|
|
13
13
|
require('../chunk-EC2KPWRG.cjs');
|
|
@@ -21,4 +21,4 @@ require('../chunk-7QBTVNMR.cjs');
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
exports.modifyCargoNestedTable =
|
|
24
|
+
exports.modifyCargoNestedTable = _chunkOSIUQTFQcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkOSIUQTFQcjs.modifyCargoTable; exports.parseCargoToml = _chunkOSIUQTFQcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkOSIUQTFQcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunkOSIUQTFQcjs.stringifyCargoToml;
|
package/dist/utilities/toml.js
CHANGED
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
parseCargoToml,
|
|
5
5
|
parseCargoTomlWithTree,
|
|
6
6
|
stringifyCargoToml
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-7RS3LXLS.js";
|
|
8
8
|
import "../chunk-RRKB32OH.js";
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-CXXYVRLX.js";
|
|
10
|
+
import "../chunk-U4N3RX22.js";
|
|
11
11
|
import "../chunk-5DQF4GNF.js";
|
|
12
12
|
import "../chunk-HVVJHTFS.js";
|
|
13
13
|
import "../chunk-ZFNAUMQS.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.190.
|
|
3
|
+
"version": "1.190.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.",
|
|
6
6
|
"keywords": [
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
"files": ["dist/**/*"],
|
|
213
213
|
"dependencies": {
|
|
214
214
|
"@ltd/j-toml": "1.38.0",
|
|
215
|
-
"@storm-software/config": "^1.137.
|
|
215
|
+
"@storm-software/config": "^1.137.52",
|
|
216
216
|
"c12": "^2.0.4",
|
|
217
217
|
"chalk": "^4.1.2",
|
|
218
218
|
"commander": "^12.1.0",
|
|
@@ -230,5 +230,5 @@
|
|
|
230
230
|
"peerDependencies": { "zod": "^3.25.0 || ^4.0.0" },
|
|
231
231
|
"peerDependenciesMeta": { "zod": { "optional": false } },
|
|
232
232
|
"publishConfig": { "access": "public" },
|
|
233
|
-
"gitHead": "
|
|
233
|
+
"gitHead": "b1f508805815ee86f76ec6bb122f736ebf447ffc"
|
|
234
234
|
}
|