@storm-software/config-tools 1.175.6 → 1.175.8
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/README.md +1 -1
- package/bin/config.cjs +3 -3
- package/bin/config.js +3 -3
- package/dist/{chunk-BKUK5DV7.cjs → chunk-5IK56ULJ.cjs} +9 -9
- package/dist/{chunk-AUCRLLQF.js → chunk-7ETBV5GI.js} +1 -1
- package/dist/{chunk-K24I634E.cjs → chunk-BGR77S6Y.cjs} +9 -9
- package/dist/{chunk-JLIGJTMV.js → chunk-CCW22JYO.js} +1 -1
- package/dist/{chunk-N5TOHWQY.cjs → chunk-DVENQC2F.cjs} +3 -3
- package/dist/{chunk-3FETUQ3K.cjs → chunk-EV4US3SK.cjs} +2 -2
- package/dist/{chunk-5TKRC6SE.js → chunk-LBY35ULQ.js} +2 -2
- package/dist/{chunk-5C6UKEJV.js → chunk-LSMHM3OA.js} +1 -1
- package/dist/{chunk-SMVSQFZ3.js → chunk-RGAB6SWX.js} +3 -3
- package/dist/{chunk-XPQXNNGZ.cjs → chunk-RP3PSEDA.cjs} +3 -3
- package/dist/{chunk-KBOEI4OA.js → chunk-WELR3VV2.js} +1 -1
- package/dist/{chunk-UEKOSCRW.cjs → chunk-YGBQLS23.cjs} +3 -3
- package/dist/{chunk-73L7WNYI.js → chunk-ZLQAA425.js} +1 -1
- package/dist/{chunk-KQSZHZV3.cjs → chunk-ZVFCNAS5.cjs} +9 -9
- 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/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/config.cjs
CHANGED
|
@@ -573,7 +573,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CON
|
|
|
573
573
|
return (message) => {
|
|
574
574
|
console.debug(
|
|
575
575
|
`
|
|
576
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
576
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#3e9eff")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
577
577
|
`
|
|
578
578
|
);
|
|
579
579
|
};
|
|
@@ -582,7 +582,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
582
582
|
return (message) => {
|
|
583
583
|
console.debug(
|
|
584
584
|
`
|
|
585
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
585
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0070E0")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
586
586
|
`
|
|
587
587
|
);
|
|
588
588
|
};
|
|
@@ -590,7 +590,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
590
590
|
return (message) => {
|
|
591
591
|
console.log(
|
|
592
592
|
`
|
|
593
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
593
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0356a8")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
594
594
|
`
|
|
595
595
|
);
|
|
596
596
|
};
|
package/bin/config.js
CHANGED
|
@@ -543,7 +543,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CON
|
|
|
543
543
|
return (message) => {
|
|
544
544
|
console.debug(
|
|
545
545
|
`
|
|
546
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
546
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#3e9eff")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
547
547
|
`
|
|
548
548
|
);
|
|
549
549
|
};
|
|
@@ -552,7 +552,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
552
552
|
return (message) => {
|
|
553
553
|
console.debug(
|
|
554
554
|
`
|
|
555
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
555
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0070E0")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
556
556
|
`
|
|
557
557
|
);
|
|
558
558
|
};
|
|
@@ -560,7 +560,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
560
560
|
return (message) => {
|
|
561
561
|
console.log(
|
|
562
562
|
`
|
|
563
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
563
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0356a8")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
564
564
|
`
|
|
565
565
|
);
|
|
566
566
|
};
|
|
@@ -3,31 +3,31 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkRP3PSEDAcjs = require('./chunk-RP3PSEDA.cjs');
|
|
7
7
|
|
|
8
8
|
// src/utilities/process-handler.ts
|
|
9
9
|
var exitWithError = (config) => {
|
|
10
|
-
|
|
10
|
+
_chunkRP3PSEDAcjs.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
|
+
_chunkRP3PSEDAcjs.writeSuccess.call(void 0, "Script completed successfully. Exiting...", config);
|
|
15
15
|
process.exit(0);
|
|
16
16
|
};
|
|
17
17
|
var handleProcess = (config) => {
|
|
18
|
-
|
|
18
|
+
_chunkRP3PSEDAcjs.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
|
+
_chunkRP3PSEDAcjs.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
|
+
_chunkRP3PSEDAcjs.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
|
+
_chunkRP3PSEDAcjs.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
|
+
_chunkRP3PSEDAcjs.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
|
+
_chunkRP3PSEDAcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
|
|
47
47
|
exitWithError(config);
|
|
48
48
|
});
|
|
49
49
|
};
|
|
@@ -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 _chunkRP3PSEDAcjs = require('./chunk-RP3PSEDA.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkIRCFHYKZcjs = require('./chunk-IRCFHYKZ.cjs');
|
|
@@ -9,13 +9,13 @@ var _chunkIRCFHYKZcjs = require('./chunk-IRCFHYKZ.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 writeTrace =
|
|
12
|
+
const writeFatal = _chunkRP3PSEDAcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.FATAL, config, _chalk2.default);
|
|
13
|
+
const writeError = _chunkRP3PSEDAcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.ERROR, config, _chalk2.default);
|
|
14
|
+
const writeWarning = _chunkRP3PSEDAcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.WARN, config, _chalk2.default);
|
|
15
|
+
const writeInfo = _chunkRP3PSEDAcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.INFO, config, _chalk2.default);
|
|
16
|
+
const writeSuccess = _chunkRP3PSEDAcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.SUCCESS, config, _chalk2.default);
|
|
17
|
+
const writeDebug = _chunkRP3PSEDAcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.DEBUG, config, _chalk2.default);
|
|
18
|
+
const writeTrace = _chunkRP3PSEDAcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.DEBUG, config, _chalk2.default);
|
|
19
19
|
return {
|
|
20
20
|
fatal: writeFatal,
|
|
21
21
|
error: writeError,
|
|
@@ -24,7 +24,7 @@ async function createLogger(config) {
|
|
|
24
24
|
success: writeSuccess,
|
|
25
25
|
debug: writeDebug,
|
|
26
26
|
trace: writeTrace,
|
|
27
|
-
getStopwatch:
|
|
27
|
+
getStopwatch: _chunkRP3PSEDAcjs.getStopwatch
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
|
|
@@ -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 _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } 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 _chunkRP3PSEDAcjs = require('./chunk-RP3PSEDA.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkU436743Ucjs = require('./chunk-U436743U.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
|
+
_chunkRP3PSEDAcjs.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
|
+
_chunkRP3PSEDAcjs.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,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 _chunkRP3PSEDAcjs = require('./chunk-RP3PSEDA.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
|
+
_chunkRP3PSEDAcjs.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,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getConfigFile
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-ZLQAA425.js";
|
|
4
4
|
import {
|
|
5
5
|
formatLogMessage,
|
|
6
6
|
writeTrace,
|
|
7
7
|
writeWarning
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-RGAB6SWX.js";
|
|
9
9
|
import {
|
|
10
10
|
applyDefaultConfig,
|
|
11
11
|
getPackageJsonConfig
|
|
@@ -75,7 +75,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CON
|
|
|
75
75
|
return (message) => {
|
|
76
76
|
console.debug(
|
|
77
77
|
`
|
|
78
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
78
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#3e9eff")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
79
79
|
`
|
|
80
80
|
);
|
|
81
81
|
};
|
|
@@ -84,7 +84,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
84
84
|
return (message) => {
|
|
85
85
|
console.debug(
|
|
86
86
|
`
|
|
87
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
87
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0070E0")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
88
88
|
`
|
|
89
89
|
);
|
|
90
90
|
};
|
|
@@ -92,7 +92,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
92
92
|
return (message) => {
|
|
93
93
|
console.log(
|
|
94
94
|
`
|
|
95
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
95
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0356a8")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
96
96
|
`
|
|
97
97
|
);
|
|
98
98
|
};
|
|
@@ -75,7 +75,7 @@ ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_n
|
|
|
75
75
|
return (message) => {
|
|
76
76
|
console.debug(
|
|
77
77
|
`
|
|
78
|
-
${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(
|
|
78
|
+
${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex("#3e9eff")(`[${_chunkWBQ4VS7Ecjs.CONSOLE_ICONS[_chunkIRCFHYKZcjs.LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
79
79
|
`
|
|
80
80
|
);
|
|
81
81
|
};
|
|
@@ -84,7 +84,7 @@ ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_n
|
|
|
84
84
|
return (message) => {
|
|
85
85
|
console.debug(
|
|
86
86
|
`
|
|
87
|
-
${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(
|
|
87
|
+
${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex("#0070E0")(`[${_chunkWBQ4VS7Ecjs.CONSOLE_ICONS[_chunkIRCFHYKZcjs.LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
88
88
|
`
|
|
89
89
|
);
|
|
90
90
|
};
|
|
@@ -92,7 +92,7 @@ ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_n
|
|
|
92
92
|
return (message) => {
|
|
93
93
|
console.log(
|
|
94
94
|
`
|
|
95
|
-
${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(
|
|
95
|
+
${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex("#0356a8")(`[${_chunkWBQ4VS7Ecjs.CONSOLE_ICONS[_chunkIRCFHYKZcjs.LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
96
96
|
`
|
|
97
97
|
);
|
|
98
98
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkZVFCNAS5cjs = require('./chunk-ZVFCNAS5.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkU436743Ucjs = require('./chunk-U436743U.cjs');
|
|
8
8
|
|
|
9
9
|
// src/get-config.ts
|
|
10
10
|
var getConfig = (workspaceRoot, skipLogs = false) => {
|
|
11
|
-
return
|
|
11
|
+
return _chunkZVFCNAS5cjs.loadStormWorkspaceConfig.call(void 0, workspaceRoot, skipLogs);
|
|
12
12
|
};
|
|
13
13
|
var getWorkspaceConfig = (skipLogs = true, options = {}) => {
|
|
14
14
|
let workspaceRoot = options.workspaceRoot;
|
|
@@ -23,7 +23,7 @@ var tryGetWorkspaceConfig = async (skipLogs = true, options = {}) => {
|
|
|
23
23
|
if (!workspaceRoot) {
|
|
24
24
|
workspaceRoot = _chunkU436743Ucjs.findWorkspaceRoot.call(void 0, options.cwd);
|
|
25
25
|
}
|
|
26
|
-
return
|
|
26
|
+
return _chunkZVFCNAS5cjs.tryLoadStormWorkspaceConfig.call(void 0,
|
|
27
27
|
workspaceRoot,
|
|
28
28
|
skipLogs,
|
|
29
29
|
options.useDefault
|
|
@@ -1,11 +1,11 @@
|
|
|
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 _chunkDVENQC2Fcjs = require('./chunk-DVENQC2F.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkRP3PSEDAcjs = require('./chunk-RP3PSEDA.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
@@ -34,10 +34,10 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
34
34
|
_workspaceRoot = _chunkU436743Ucjs.findWorkspaceRoot.call(void 0, );
|
|
35
35
|
}
|
|
36
36
|
const configEnv = _chunkCIVWRQRNcjs.getConfigEnv.call(void 0, );
|
|
37
|
-
const configFile = await
|
|
37
|
+
const configFile = await _chunkDVENQC2Fcjs.getConfigFile.call(void 0, _workspaceRoot);
|
|
38
38
|
if (!configFile) {
|
|
39
39
|
if (!skipLogs) {
|
|
40
|
-
|
|
40
|
+
_chunkRP3PSEDAcjs.writeWarning.call(void 0,
|
|
41
41
|
"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",
|
|
42
42
|
{ logLevel: "all" }
|
|
43
43
|
);
|
|
@@ -90,9 +90,9 @@ var loadStormWorkspaceConfig = async (workspaceRoot, skipLogs = false) => {
|
|
|
90
90
|
);
|
|
91
91
|
_chunk6YHEX4VCcjs.setConfigEnv.call(void 0, config);
|
|
92
92
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
93
|
-
|
|
93
|
+
_chunkRP3PSEDAcjs.writeTrace.call(void 0,
|
|
94
94
|
`\u2699\uFE0F Using Storm Workspace configuration:
|
|
95
|
-
${
|
|
95
|
+
${_chunkRP3PSEDAcjs.formatLogMessage.call(void 0, config)}`,
|
|
96
96
|
config
|
|
97
97
|
);
|
|
98
98
|
}
|
|
@@ -112,16 +112,16 @@ var tryLoadStormWorkspaceConfig = async (workspaceRoot, skipLogs = true, useDefa
|
|
|
112
112
|
}
|
|
113
113
|
_chunk6YHEX4VCcjs.setConfigEnv.call(void 0, config);
|
|
114
114
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
115
|
-
|
|
115
|
+
_chunkRP3PSEDAcjs.writeTrace.call(void 0,
|
|
116
116
|
`\u2699\uFE0F Using Storm Workspace configuration:
|
|
117
|
-
${
|
|
117
|
+
${_chunkRP3PSEDAcjs.formatLogMessage.call(void 0, config)}`,
|
|
118
118
|
config
|
|
119
119
|
);
|
|
120
120
|
}
|
|
121
121
|
return config;
|
|
122
122
|
} catch (error) {
|
|
123
123
|
if (!skipLogs) {
|
|
124
|
-
|
|
124
|
+
_chunkRP3PSEDAcjs.writeWarning.call(void 0,
|
|
125
125
|
`\u26A0\uFE0F Failed to load Storm Workspace configuration: ${error}`,
|
|
126
126
|
{ logLevel: "all" }
|
|
127
127
|
);
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkDVENQC2Fcjs = require('../chunk-DVENQC2F.cjs');
|
|
5
5
|
require('../chunk-3COHMHPU.cjs');
|
|
6
|
-
require('../chunk-
|
|
6
|
+
require('../chunk-5IK56ULJ.cjs');
|
|
7
7
|
require('../chunk-DQT6QJRQ.cjs');
|
|
8
|
-
require('../chunk-
|
|
8
|
+
require('../chunk-EV4US3SK.cjs');
|
|
9
9
|
require('../chunk-QLJYCKMD.cjs');
|
|
10
10
|
require('../chunk-UCO4HZFN.cjs');
|
|
11
11
|
require('../chunk-JMI7BRL7.cjs');
|
|
12
12
|
require('../chunk-7PV6L7I7.cjs');
|
|
13
|
-
require('../chunk-
|
|
14
|
-
require('../chunk-
|
|
13
|
+
require('../chunk-BGR77S6Y.cjs');
|
|
14
|
+
require('../chunk-RP3PSEDA.cjs');
|
|
15
15
|
require('../chunk-KH5SONKW.cjs');
|
|
16
16
|
require('../chunk-U436743U.cjs');
|
|
17
17
|
require('../chunk-N3UX6L7X.cjs');
|
|
@@ -25,4 +25,4 @@ require('../chunk-IRCFHYKZ.cjs');
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
exports.getConfigFile =
|
|
28
|
+
exports.getConfigFile = _chunkDVENQC2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkDVENQC2Fcjs.getConfigFileByName;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getConfigFile,
|
|
3
3
|
getConfigFileByName
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-ZLQAA425.js";
|
|
5
5
|
import "../chunk-UKGRDKIH.js";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-CCW22JYO.js";
|
|
7
7
|
import "../chunk-6RVIJKY3.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-7ETBV5GI.js";
|
|
9
9
|
import "../chunk-HYJVQZYZ.js";
|
|
10
10
|
import "../chunk-CL6NTH3D.js";
|
|
11
11
|
import "../chunk-WYQYWPLE.js";
|
|
12
12
|
import "../chunk-RRKB32OH.js";
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
13
|
+
import "../chunk-WELR3VV2.js";
|
|
14
|
+
import "../chunk-RGAB6SWX.js";
|
|
15
15
|
import "../chunk-SHD7ZUSQ.js";
|
|
16
16
|
import "../chunk-PTHGOJU6.js";
|
|
17
17
|
import "../chunk-6JBGUE4A.js";
|
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkDVENQC2Fcjs = require('../chunk-DVENQC2F.cjs');
|
|
6
6
|
require('../chunk-3COHMHPU.cjs');
|
|
7
|
-
require('../chunk-
|
|
7
|
+
require('../chunk-5IK56ULJ.cjs');
|
|
8
8
|
require('../chunk-DQT6QJRQ.cjs');
|
|
9
|
-
require('../chunk-
|
|
9
|
+
require('../chunk-EV4US3SK.cjs');
|
|
10
10
|
require('../chunk-QLJYCKMD.cjs');
|
|
11
11
|
require('../chunk-UCO4HZFN.cjs');
|
|
12
12
|
require('../chunk-JMI7BRL7.cjs');
|
|
13
13
|
require('../chunk-7PV6L7I7.cjs');
|
|
14
|
-
require('../chunk-
|
|
15
|
-
require('../chunk-
|
|
14
|
+
require('../chunk-BGR77S6Y.cjs');
|
|
15
|
+
require('../chunk-RP3PSEDA.cjs');
|
|
16
16
|
require('../chunk-KH5SONKW.cjs');
|
|
17
17
|
require('../chunk-U436743U.cjs');
|
|
18
18
|
require('../chunk-N3UX6L7X.cjs');
|
|
@@ -26,4 +26,4 @@ require('../chunk-IRCFHYKZ.cjs');
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
exports.getConfigFile =
|
|
29
|
+
exports.getConfigFile = _chunkDVENQC2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkDVENQC2Fcjs.getConfigFileByName;
|
|
@@ -2,17 +2,17 @@ import "../chunk-2AVLCXLT.js";
|
|
|
2
2
|
import {
|
|
3
3
|
getConfigFile,
|
|
4
4
|
getConfigFileByName
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-ZLQAA425.js";
|
|
6
6
|
import "../chunk-UKGRDKIH.js";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-CCW22JYO.js";
|
|
8
8
|
import "../chunk-6RVIJKY3.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-7ETBV5GI.js";
|
|
10
10
|
import "../chunk-HYJVQZYZ.js";
|
|
11
11
|
import "../chunk-CL6NTH3D.js";
|
|
12
12
|
import "../chunk-WYQYWPLE.js";
|
|
13
13
|
import "../chunk-RRKB32OH.js";
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
14
|
+
import "../chunk-WELR3VV2.js";
|
|
15
|
+
import "../chunk-RGAB6SWX.js";
|
|
16
16
|
import "../chunk-SHD7ZUSQ.js";
|
|
17
17
|
import "../chunk-PTHGOJU6.js";
|
|
18
18
|
import "../chunk-6JBGUE4A.js";
|
|
@@ -3,18 +3,18 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('./chunk-
|
|
6
|
+
var _chunkZVFCNAS5cjs = require('./chunk-ZVFCNAS5.cjs');
|
|
7
|
+
require('./chunk-DVENQC2F.cjs');
|
|
8
8
|
require('./chunk-3COHMHPU.cjs');
|
|
9
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-5IK56ULJ.cjs');
|
|
10
10
|
require('./chunk-DQT6QJRQ.cjs');
|
|
11
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-EV4US3SK.cjs');
|
|
12
12
|
require('./chunk-QLJYCKMD.cjs');
|
|
13
13
|
require('./chunk-UCO4HZFN.cjs');
|
|
14
14
|
require('./chunk-JMI7BRL7.cjs');
|
|
15
15
|
require('./chunk-7PV6L7I7.cjs');
|
|
16
|
-
require('./chunk-
|
|
17
|
-
require('./chunk-
|
|
16
|
+
require('./chunk-BGR77S6Y.cjs');
|
|
17
|
+
require('./chunk-RP3PSEDA.cjs');
|
|
18
18
|
require('./chunk-KH5SONKW.cjs');
|
|
19
19
|
require('./chunk-U436743U.cjs');
|
|
20
20
|
require('./chunk-N3UX6L7X.cjs');
|
|
@@ -32,4 +32,4 @@ require('./chunk-IRCFHYKZ.cjs');
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
exports.createConfigExtension =
|
|
35
|
+
exports.createConfigExtension = _chunkZVFCNAS5cjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkZVFCNAS5cjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkZVFCNAS5cjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkZVFCNAS5cjs.tryLoadStormWorkspaceConfig;
|
|
@@ -3,18 +3,18 @@ import {
|
|
|
3
3
|
createStormWorkspaceConfig,
|
|
4
4
|
loadStormWorkspaceConfig,
|
|
5
5
|
tryLoadStormWorkspaceConfig
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-LBY35ULQ.js";
|
|
7
|
+
import "./chunk-ZLQAA425.js";
|
|
8
8
|
import "./chunk-UKGRDKIH.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-CCW22JYO.js";
|
|
10
10
|
import "./chunk-6RVIJKY3.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-7ETBV5GI.js";
|
|
12
12
|
import "./chunk-HYJVQZYZ.js";
|
|
13
13
|
import "./chunk-CL6NTH3D.js";
|
|
14
14
|
import "./chunk-WYQYWPLE.js";
|
|
15
15
|
import "./chunk-RRKB32OH.js";
|
|
16
|
-
import "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-WELR3VV2.js";
|
|
17
|
+
import "./chunk-RGAB6SWX.js";
|
|
18
18
|
import "./chunk-SHD7ZUSQ.js";
|
|
19
19
|
import "./chunk-PTHGOJU6.js";
|
|
20
20
|
import "./chunk-6JBGUE4A.js";
|
package/dist/get-config.cjs
CHANGED
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
5
|
+
var _chunkYGBQLS23cjs = require('./chunk-YGBQLS23.cjs');
|
|
6
|
+
require('./chunk-ZVFCNAS5.cjs');
|
|
7
|
+
require('./chunk-DVENQC2F.cjs');
|
|
8
8
|
require('./chunk-3COHMHPU.cjs');
|
|
9
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-5IK56ULJ.cjs');
|
|
10
10
|
require('./chunk-DQT6QJRQ.cjs');
|
|
11
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-EV4US3SK.cjs');
|
|
12
12
|
require('./chunk-QLJYCKMD.cjs');
|
|
13
13
|
require('./chunk-UCO4HZFN.cjs');
|
|
14
14
|
require('./chunk-JMI7BRL7.cjs');
|
|
15
15
|
require('./chunk-7PV6L7I7.cjs');
|
|
16
|
-
require('./chunk-
|
|
17
|
-
require('./chunk-
|
|
16
|
+
require('./chunk-BGR77S6Y.cjs');
|
|
17
|
+
require('./chunk-RP3PSEDA.cjs');
|
|
18
18
|
require('./chunk-KH5SONKW.cjs');
|
|
19
19
|
require('./chunk-U436743U.cjs');
|
|
20
20
|
require('./chunk-N3UX6L7X.cjs');
|
|
@@ -31,4 +31,4 @@ require('./chunk-IRCFHYKZ.cjs');
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
exports.getConfig =
|
|
34
|
+
exports.getConfig = _chunkYGBQLS23cjs.getConfig; exports.getWorkspaceConfig = _chunkYGBQLS23cjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkYGBQLS23cjs.tryGetWorkspaceConfig;
|
package/dist/get-config.js
CHANGED
|
@@ -2,19 +2,19 @@ import {
|
|
|
2
2
|
getConfig,
|
|
3
3
|
getWorkspaceConfig,
|
|
4
4
|
tryGetWorkspaceConfig
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-LSMHM3OA.js";
|
|
6
|
+
import "./chunk-LBY35ULQ.js";
|
|
7
|
+
import "./chunk-ZLQAA425.js";
|
|
8
8
|
import "./chunk-UKGRDKIH.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-CCW22JYO.js";
|
|
10
10
|
import "./chunk-6RVIJKY3.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-7ETBV5GI.js";
|
|
12
12
|
import "./chunk-HYJVQZYZ.js";
|
|
13
13
|
import "./chunk-CL6NTH3D.js";
|
|
14
14
|
import "./chunk-WYQYWPLE.js";
|
|
15
15
|
import "./chunk-RRKB32OH.js";
|
|
16
|
-
import "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-WELR3VV2.js";
|
|
17
|
+
import "./chunk-RGAB6SWX.js";
|
|
18
18
|
import "./chunk-SHD7ZUSQ.js";
|
|
19
19
|
import "./chunk-PTHGOJU6.js";
|
|
20
20
|
import "./chunk-6JBGUE4A.js";
|
package/dist/index.cjs
CHANGED
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkYGBQLS23cjs = require('./chunk-YGBQLS23.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkZVFCNAS5cjs = require('./chunk-ZVFCNAS5.cjs');
|
|
12
12
|
require('./chunk-IWD6YQKX.cjs');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkDVENQC2Fcjs = require('./chunk-DVENQC2F.cjs');
|
|
17
17
|
require('./chunk-3COHMHPU.cjs');
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunk5IK56ULJcjs = require('./chunk-5IK56ULJ.cjs');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
@@ -31,7 +31,7 @@ var _chunkDQT6QJRQcjs = require('./chunk-DQT6QJRQ.cjs');
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
34
|
+
var _chunkEV4US3SKcjs = require('./chunk-EV4US3SK.cjs');
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
|
|
@@ -49,7 +49,7 @@ var _chunkJMI7BRL7cjs = require('./chunk-JMI7BRL7.cjs');
|
|
|
49
49
|
require('./chunk-7PV6L7I7.cjs');
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
var
|
|
52
|
+
var _chunkBGR77S6Ycjs = require('./chunk-BGR77S6Y.cjs');
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
@@ -62,7 +62,7 @@ var _chunkK24I634Ecjs = require('./chunk-K24I634E.cjs');
|
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
var
|
|
65
|
+
var _chunkRP3PSEDAcjs = require('./chunk-RP3PSEDA.cjs');
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
|
|
@@ -192,4 +192,4 @@ var _chunkIRCFHYKZcjs = require('./chunk-IRCFHYKZ.cjs');
|
|
|
192
192
|
|
|
193
193
|
|
|
194
194
|
|
|
195
|
-
exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkKH5SONKWcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkKH5SONKWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkQLJYCKMDcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkQLJYCKMDcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkQLJYCKMDcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.createConfigExtension =
|
|
195
|
+
exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkKH5SONKWcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkKH5SONKWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkQLJYCKMDcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkQLJYCKMDcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkQLJYCKMDcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.createConfigExtension = _chunkZVFCNAS5cjs.createConfigExtension; exports.createLogger = _chunkBGR77S6Ycjs.createLogger; exports.createStormWorkspaceConfig = _chunkZVFCNAS5cjs.createStormWorkspaceConfig; exports.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError = _chunk5IK56ULJcjs.exitWithError; exports.exitWithSuccess = _chunk5IK56ULJcjs.exitWithSuccess; exports.extname = _chunkM3REM2FUcjs.extname; exports.findFileName = _chunkJMI7BRL7cjs.findFileName; exports.findFilePath = _chunkJMI7BRL7cjs.findFilePath; exports.findWorkspaceRoot = _chunkU436743Ucjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunkU436743Ucjs.findWorkspaceRootSafe; exports.format = _chunkM3REM2FUcjs.format; exports.formatLogMessage = _chunkRP3PSEDAcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkCTYIEJ7Ccjs.getChalk; exports.getColor = _chunkUCO4HZFNcjs.getColor; exports.getColorConfig = _chunkUCO4HZFNcjs.getColorConfig; exports.getConfig = _chunkYGBQLS23cjs.getConfig; exports.getConfigEnv = _chunkCIVWRQRNcjs.getConfigEnv; exports.getConfigFile = _chunkDVENQC2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkDVENQC2Fcjs.getConfigFileByName; exports.getExtensionEnv = _chunkCIVWRQRNcjs.getExtensionEnv; exports.getLogFn = _chunkRP3PSEDAcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkKH5SONKWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkRP3PSEDAcjs.getStopwatch; exports.getWorkspaceConfig = _chunkYGBQLS23cjs.getWorkspaceConfig; exports.handleProcess = _chunk5IK56ULJcjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkZVFCNAS5cjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkEV4US3SKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkEV4US3SKcjs.modifyCargoTable; exports.normalizeString = _chunkM3REM2FUcjs.normalizeString; exports.normalizeWindowsPath = _chunkM3REM2FUcjs.normalizeWindowsPath; exports.parse = _chunkM3REM2FUcjs.parse; exports.parseCargoToml = _chunkEV4US3SKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkEV4US3SKcjs.parseCargoTomlWithTree; exports.relative = _chunkM3REM2FUcjs.relative; exports.removeExtension = _chunkJMI7BRL7cjs.removeExtension; exports.resolve = _chunkM3REM2FUcjs.resolve; exports.run = _chunkDQT6QJRQcjs.run; exports.runAsync = _chunkDQT6QJRQcjs.runAsync; exports.sep = _chunkM3REM2FUcjs.sep; exports.setConfigEnv = _chunk6YHEX4VCcjs.setConfigEnv; exports.setExtensionEnv = _chunk6YHEX4VCcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkEV4US3SKcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkYGBQLS23cjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkZVFCNAS5cjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkRP3PSEDAcjs.writeDebug; exports.writeError = _chunkRP3PSEDAcjs.writeError; exports.writeFatal = _chunkRP3PSEDAcjs.writeFatal; exports.writeInfo = _chunkRP3PSEDAcjs.writeInfo; exports.writeSuccess = _chunkRP3PSEDAcjs.writeSuccess; exports.writeSystem = _chunkRP3PSEDAcjs.writeSystem; exports.writeTrace = _chunkRP3PSEDAcjs.writeTrace; exports.writeWarning = _chunkRP3PSEDAcjs.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-LSMHM3OA.js";
|
|
6
6
|
import {
|
|
7
7
|
createConfigExtension,
|
|
8
8
|
createStormWorkspaceConfig,
|
|
9
9
|
loadStormWorkspaceConfig,
|
|
10
10
|
tryLoadStormWorkspaceConfig
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-LBY35ULQ.js";
|
|
12
12
|
import "./chunk-2AVLCXLT.js";
|
|
13
13
|
import {
|
|
14
14
|
getConfigFile,
|
|
15
15
|
getConfigFileByName
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-ZLQAA425.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-CCW22JYO.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-7ETBV5GI.js";
|
|
35
35
|
import {
|
|
36
36
|
applyWorkspaceBaseTokens,
|
|
37
37
|
applyWorkspaceProjectTokens,
|
|
@@ -49,7 +49,7 @@ import {
|
|
|
49
49
|
import "./chunk-RRKB32OH.js";
|
|
50
50
|
import {
|
|
51
51
|
createLogger
|
|
52
|
-
} from "./chunk-
|
|
52
|
+
} from "./chunk-WELR3VV2.js";
|
|
53
53
|
import {
|
|
54
54
|
formatLogMessage,
|
|
55
55
|
getLogFn,
|
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
writeSystem,
|
|
63
63
|
writeTrace,
|
|
64
64
|
writeWarning
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-RGAB6SWX.js";
|
|
66
66
|
import {
|
|
67
67
|
DEFAULT_COLOR_CONFIG,
|
|
68
68
|
applyDefaultConfig,
|
package/dist/logger/console.cjs
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkRP3PSEDAcjs = require('../chunk-RP3PSEDA.cjs');
|
|
14
14
|
require('../chunk-KH5SONKW.cjs');
|
|
15
15
|
require('../chunk-U436743U.cjs');
|
|
16
16
|
require('../chunk-N3UX6L7X.cjs');
|
|
@@ -33,4 +33,4 @@ require('../chunk-IRCFHYKZ.cjs');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
exports.formatLogMessage =
|
|
36
|
+
exports.formatLogMessage = _chunkRP3PSEDAcjs.formatLogMessage; exports.getLogFn = _chunkRP3PSEDAcjs.getLogFn; exports.getStopwatch = _chunkRP3PSEDAcjs.getStopwatch; exports.writeDebug = _chunkRP3PSEDAcjs.writeDebug; exports.writeError = _chunkRP3PSEDAcjs.writeError; exports.writeFatal = _chunkRP3PSEDAcjs.writeFatal; exports.writeInfo = _chunkRP3PSEDAcjs.writeInfo; exports.writeSuccess = _chunkRP3PSEDAcjs.writeSuccess; exports.writeSystem = _chunkRP3PSEDAcjs.writeSystem; exports.writeTrace = _chunkRP3PSEDAcjs.writeTrace; exports.writeWarning = _chunkRP3PSEDAcjs.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 _chunkBGR77S6Ycjs = require('../chunk-BGR77S6Y.cjs');
|
|
4
|
+
require('../chunk-RP3PSEDA.cjs');
|
|
5
5
|
require('../chunk-KH5SONKW.cjs');
|
|
6
6
|
require('../chunk-U436743U.cjs');
|
|
7
7
|
require('../chunk-N3UX6L7X.cjs');
|
|
@@ -14,4 +14,4 @@ require('../chunk-4PX5UVAN.cjs');
|
|
|
14
14
|
require('../chunk-IRCFHYKZ.cjs');
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
exports.createLogger =
|
|
17
|
+
exports.createLogger = _chunkBGR77S6Ycjs.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 _chunkBGR77S6Ycjs = require('../chunk-BGR77S6Y.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -14,7 +14,7 @@ var _chunkK24I634Ecjs = require('../chunk-K24I634E.cjs');
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkRP3PSEDAcjs = require('../chunk-RP3PSEDA.cjs');
|
|
18
18
|
require('../chunk-KH5SONKW.cjs');
|
|
19
19
|
require('../chunk-U436743U.cjs');
|
|
20
20
|
require('../chunk-N3UX6L7X.cjs');
|
|
@@ -57,4 +57,4 @@ require('../chunk-IRCFHYKZ.cjs');
|
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.createLogger =
|
|
60
|
+
exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.createLogger = _chunkBGR77S6Ycjs.createLogger; exports.formatLogMessage = _chunkRP3PSEDAcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkCTYIEJ7Ccjs.getChalk; exports.getLogFn = _chunkRP3PSEDAcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getStopwatch = _chunkRP3PSEDAcjs.getStopwatch; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.writeDebug = _chunkRP3PSEDAcjs.writeDebug; exports.writeError = _chunkRP3PSEDAcjs.writeError; exports.writeFatal = _chunkRP3PSEDAcjs.writeFatal; exports.writeInfo = _chunkRP3PSEDAcjs.writeInfo; exports.writeSuccess = _chunkRP3PSEDAcjs.writeSuccess; exports.writeSystem = _chunkRP3PSEDAcjs.writeSystem; exports.writeTrace = _chunkRP3PSEDAcjs.writeTrace; exports.writeWarning = _chunkRP3PSEDAcjs.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-WELR3VV2.js";
|
|
5
5
|
import {
|
|
6
6
|
formatLogMessage,
|
|
7
7
|
getLogFn,
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
writeSystem,
|
|
15
15
|
writeTrace,
|
|
16
16
|
writeWarning
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-RGAB6SWX.js";
|
|
18
18
|
import "../chunk-SHD7ZUSQ.js";
|
|
19
19
|
import "../chunk-PTHGOJU6.js";
|
|
20
20
|
import "../chunk-6JBGUE4A.js";
|
package/dist/utilities/index.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunk5IK56ULJcjs = require('../chunk-5IK56ULJ.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -15,7 +15,7 @@ var _chunkDQT6QJRQcjs = require('../chunk-DQT6QJRQ.cjs');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkEV4US3SKcjs = require('../chunk-EV4US3SK.cjs');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
@@ -31,8 +31,8 @@ var _chunkUCO4HZFNcjs = require('../chunk-UCO4HZFN.cjs');
|
|
|
31
31
|
|
|
32
32
|
var _chunkJMI7BRL7cjs = require('../chunk-JMI7BRL7.cjs');
|
|
33
33
|
require('../chunk-7PV6L7I7.cjs');
|
|
34
|
-
require('../chunk-
|
|
35
|
-
require('../chunk-
|
|
34
|
+
require('../chunk-BGR77S6Y.cjs');
|
|
35
|
+
require('../chunk-RP3PSEDA.cjs');
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
|
|
@@ -104,4 +104,4 @@ require('../chunk-IRCFHYKZ.cjs');
|
|
|
104
104
|
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
exports.DEFAULT_COLOR_CONFIG = _chunkKH5SONKWcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.applyDefaultConfig = _chunkKH5SONKWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkQLJYCKMDcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkQLJYCKMDcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkQLJYCKMDcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError =
|
|
107
|
+
exports.DEFAULT_COLOR_CONFIG = _chunkKH5SONKWcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.applyDefaultConfig = _chunkKH5SONKWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkQLJYCKMDcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkQLJYCKMDcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkQLJYCKMDcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError = _chunk5IK56ULJcjs.exitWithError; exports.exitWithSuccess = _chunk5IK56ULJcjs.exitWithSuccess; exports.extname = _chunkM3REM2FUcjs.extname; exports.findFileName = _chunkJMI7BRL7cjs.findFileName; exports.findFilePath = _chunkJMI7BRL7cjs.findFilePath; exports.findWorkspaceRoot = _chunkU436743Ucjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunkU436743Ucjs.findWorkspaceRootSafe; exports.format = _chunkM3REM2FUcjs.format; exports.getColor = _chunkUCO4HZFNcjs.getColor; exports.getColorConfig = _chunkUCO4HZFNcjs.getColorConfig; exports.getPackageJsonConfig = _chunkKH5SONKWcjs.getPackageJsonConfig; exports.handleProcess = _chunk5IK56ULJcjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; exports.modifyCargoNestedTable = _chunkEV4US3SKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkEV4US3SKcjs.modifyCargoTable; exports.normalizeString = _chunkM3REM2FUcjs.normalizeString; exports.normalizeWindowsPath = _chunkM3REM2FUcjs.normalizeWindowsPath; exports.parse = _chunkM3REM2FUcjs.parse; exports.parseCargoToml = _chunkEV4US3SKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkEV4US3SKcjs.parseCargoTomlWithTree; exports.relative = _chunkM3REM2FUcjs.relative; exports.removeExtension = _chunkJMI7BRL7cjs.removeExtension; exports.resolve = _chunkM3REM2FUcjs.resolve; exports.run = _chunkDQT6QJRQcjs.run; exports.runAsync = _chunkDQT6QJRQcjs.runAsync; exports.sep = _chunkM3REM2FUcjs.sep; exports.stringifyCargoToml = _chunkEV4US3SKcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.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-CCW22JYO.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-7ETBV5GI.js";
|
|
19
19
|
import {
|
|
20
20
|
applyWorkspaceBaseTokens,
|
|
21
21
|
applyWorkspaceProjectTokens,
|
|
@@ -31,8 +31,8 @@ import {
|
|
|
31
31
|
removeExtension
|
|
32
32
|
} from "../chunk-WYQYWPLE.js";
|
|
33
33
|
import "../chunk-RRKB32OH.js";
|
|
34
|
-
import "../chunk-
|
|
35
|
-
import "../chunk-
|
|
34
|
+
import "../chunk-WELR3VV2.js";
|
|
35
|
+
import "../chunk-RGAB6SWX.js";
|
|
36
36
|
import {
|
|
37
37
|
DEFAULT_COLOR_CONFIG,
|
|
38
38
|
applyDefaultConfig,
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../chunk-
|
|
5
|
+
var _chunk5IK56ULJcjs = require('../chunk-5IK56ULJ.cjs');
|
|
6
|
+
require('../chunk-RP3PSEDA.cjs');
|
|
7
7
|
require('../chunk-KH5SONKW.cjs');
|
|
8
8
|
require('../chunk-U436743U.cjs');
|
|
9
9
|
require('../chunk-N3UX6L7X.cjs');
|
|
@@ -18,4 +18,4 @@ require('../chunk-IRCFHYKZ.cjs');
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
exports.exitWithError =
|
|
21
|
+
exports.exitWithError = _chunk5IK56ULJcjs.exitWithError; exports.exitWithSuccess = _chunk5IK56ULJcjs.exitWithSuccess; exports.handleProcess = _chunk5IK56ULJcjs.handleProcess;
|
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
exitWithError,
|
|
3
3
|
exitWithSuccess,
|
|
4
4
|
handleProcess
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-CCW22JYO.js";
|
|
6
|
+
import "../chunk-RGAB6SWX.js";
|
|
7
7
|
import "../chunk-SHD7ZUSQ.js";
|
|
8
8
|
import "../chunk-PTHGOJU6.js";
|
|
9
9
|
import "../chunk-6JBGUE4A.js";
|
package/dist/utilities/toml.cjs
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkEV4US3SKcjs = require('../chunk-EV4US3SK.cjs');
|
|
8
8
|
require('../chunk-7PV6L7I7.cjs');
|
|
9
|
-
require('../chunk-
|
|
10
|
-
require('../chunk-
|
|
9
|
+
require('../chunk-BGR77S6Y.cjs');
|
|
10
|
+
require('../chunk-RP3PSEDA.cjs');
|
|
11
11
|
require('../chunk-KH5SONKW.cjs');
|
|
12
12
|
require('../chunk-U436743U.cjs');
|
|
13
13
|
require('../chunk-N3UX6L7X.cjs');
|
|
@@ -24,4 +24,4 @@ require('../chunk-IRCFHYKZ.cjs');
|
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
exports.modifyCargoNestedTable =
|
|
27
|
+
exports.modifyCargoNestedTable = _chunkEV4US3SKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkEV4US3SKcjs.modifyCargoTable; exports.parseCargoToml = _chunkEV4US3SKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkEV4US3SKcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunkEV4US3SKcjs.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-7ETBV5GI.js";
|
|
8
8
|
import "../chunk-RRKB32OH.js";
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-WELR3VV2.js";
|
|
10
|
+
import "../chunk-RGAB6SWX.js";
|
|
11
11
|
import "../chunk-SHD7ZUSQ.js";
|
|
12
12
|
import "../chunk-PTHGOJU6.js";
|
|
13
13
|
import "../chunk-6JBGUE4A.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.175.
|
|
3
|
+
"version": "1.175.8",
|
|
4
4
|
"type": "module",
|
|
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
|
"repository": {
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
],
|
|
212
212
|
"dependencies": {
|
|
213
213
|
"@ltd/j-toml": "1.38.0",
|
|
214
|
-
"@storm-software/config": "^1.124.
|
|
214
|
+
"@storm-software/config": "^1.124.8",
|
|
215
215
|
"c12": "^2.0.0-beta.2",
|
|
216
216
|
"chalk": "^4.1.2",
|
|
217
217
|
"commander": "^12.1.0",
|
|
@@ -224,5 +224,5 @@
|
|
|
224
224
|
"devDependencies": { "@types/node": "^22.10.2", "tsup": "8.4.0" },
|
|
225
225
|
"publishConfig": { "access": "public" },
|
|
226
226
|
"sideEffects": false,
|
|
227
|
-
"gitHead": "
|
|
227
|
+
"gitHead": "58a47acf410d136ff060f32ba5730b95f9bd1c4b"
|
|
228
228
|
}
|