@storm-software/config-tools 1.188.76 → 1.188.77

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.
Files changed (39) hide show
  1. package/bin/config.cjs +2 -2
  2. package/bin/config.js +2 -2
  3. package/dist/{chunk-64PSPH5U.cjs → chunk-A6A2A5EK.cjs} +3 -3
  4. package/dist/{chunk-MGK5WGAQ.cjs → chunk-ALARZAJQ.cjs} +10 -10
  5. package/dist/{chunk-SUXNQ4FP.js → chunk-BMTJACKJ.js} +2 -2
  6. package/dist/{chunk-ACQVK7YY.js → chunk-BQLCBDR6.js} +1 -1
  7. package/dist/{chunk-IIM7XN2B.cjs → chunk-GHFENILR.cjs} +2 -2
  8. package/dist/{chunk-SUZQQBAP.cjs → chunk-LMHBDNQR.cjs} +9 -9
  9. package/dist/{chunk-MN3WWVZL.cjs → chunk-LR6U6OBW.cjs} +2 -2
  10. package/dist/{chunk-SG5QE5ZG.cjs → chunk-N3LK3W3T.cjs} +9 -9
  11. package/dist/{chunk-M5AM7YAJ.cjs → chunk-NU257TQ7.cjs} +3 -3
  12. package/dist/{chunk-B3QZW2I4.js → chunk-ODZFMPTW.js} +1 -1
  13. package/dist/{chunk-4VMNC3KN.js → chunk-QDUNMWAE.js} +2 -2
  14. package/dist/{chunk-3O7SBNQK.js → chunk-VIHD65EW.js} +1 -1
  15. package/dist/{chunk-C6VNQGUD.js → chunk-YHW325ID.js} +1 -1
  16. package/dist/{chunk-TV6VTZS6.js → chunk-ZCFECSDH.js} +1 -1
  17. package/dist/config-file/get-config-file.cjs +6 -6
  18. package/dist/config-file/get-config-file.js +5 -5
  19. package/dist/config-file/index.cjs +6 -6
  20. package/dist/config-file/index.js +5 -5
  21. package/dist/create-storm-config.cjs +7 -7
  22. package/dist/create-storm-config.js +6 -6
  23. package/dist/get-config.cjs +8 -8
  24. package/dist/get-config.js +7 -7
  25. package/dist/index.cjs +8 -8
  26. package/dist/index.js +7 -7
  27. package/dist/logger/console.cjs +2 -2
  28. package/dist/logger/console.js +1 -1
  29. package/dist/logger/create-logger.cjs +3 -3
  30. package/dist/logger/create-logger.js +2 -2
  31. package/dist/logger/index.cjs +3 -3
  32. package/dist/logger/index.js +2 -2
  33. package/dist/utilities/index.cjs +5 -5
  34. package/dist/utilities/index.js +4 -4
  35. package/dist/utilities/process-handler.cjs +3 -3
  36. package/dist/utilities/process-handler.js +2 -2
  37. package/dist/utilities/toml.cjs +4 -4
  38. package/dist/utilities/toml.js +3 -3
  39. package/package.json +2 -2
package/bin/config.cjs CHANGED
@@ -281,7 +281,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
281
281
  return (message) => {
282
282
  console.debug(
283
283
  `
284
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
284
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
285
285
  `
286
286
  );
287
287
  };
@@ -290,7 +290,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
290
290
  return (message) => {
291
291
  console.debug(
292
292
  `
293
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
293
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
294
294
  `
295
295
  );
296
296
  };
package/bin/config.js CHANGED
@@ -248,7 +248,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
248
248
  return (message) => {
249
249
  console.debug(
250
250
  `
251
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
251
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
252
252
  `
253
253
  );
254
254
  };
@@ -257,7 +257,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
257
257
  return (message) => {
258
258
  console.debug(
259
259
  `
260
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
260
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
261
261
  `
262
262
  );
263
263
  };
@@ -3,7 +3,7 @@
3
3
  var _chunk3CNCDDWZcjs = require('./chunk-3CNCDDWZ.cjs');
4
4
 
5
5
 
6
- var _chunkMN3WWVZLcjs = require('./chunk-MN3WWVZL.cjs');
6
+ var _chunkLR6U6OBWcjs = require('./chunk-LR6U6OBW.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
- _chunkMN3WWVZLcjs.writeTrace.call(void 0,
55
+ _chunkLR6U6OBWcjs.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
- _chunkMN3WWVZLcjs.writeTrace.call(void 0,
71
+ _chunkLR6U6OBWcjs.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,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 _chunk64PSPH5Ucjs = require('./chunk-64PSPH5U.cjs');
3
+ var _chunkA6A2A5EKcjs = require('./chunk-A6A2A5EK.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 _chunkMN3WWVZLcjs = require('./chunk-MN3WWVZL.cjs');
15
+ var _chunkLR6U6OBWcjs = require('./chunk-LR6U6OBW.cjs');
16
16
 
17
17
 
18
18
  var _chunkY4QTE6AKcjs = require('./chunk-Y4QTE6AK.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 = _chunkI6JQJR5Wcjs.getConfigEnv.call(void 0, );
41
- const configFile = await _chunk64PSPH5Ucjs.getConfigFile.call(void 0, _workspaceRoot);
41
+ const configFile = await _chunkA6A2A5EKcjs.getConfigFile.call(void 0, _workspaceRoot);
42
42
  if (!configFile) {
43
43
  if (!skipLogs) {
44
- _chunkMN3WWVZLcjs.writeWarning.call(void 0,
44
+ _chunkLR6U6OBWcjs.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
  );
@@ -68,7 +68,7 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
68
68
  throw new Error(
69
69
  `Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess', _3 => _3.message]) ? `: ${error.message}` : ""}
70
70
 
71
- Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${_chunkMN3WWVZLcjs.formatLogMessage.call(void 0,
71
+ Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${_chunkLR6U6OBWcjs.formatLogMessage.call(void 0,
72
72
  configInput
73
73
  )}`,
74
74
  {
@@ -113,9 +113,9 @@ var loadStormWorkspaceConfig = async (workspaceRoot, skipLogs = false) => {
113
113
  );
114
114
  _chunkY4QTE6AKcjs.setConfigEnv.call(void 0, config);
115
115
  if (!skipLogs && !config.skipConfigLogging) {
116
- _chunkMN3WWVZLcjs.writeTrace.call(void 0,
116
+ _chunkLR6U6OBWcjs.writeTrace.call(void 0,
117
117
  `\u2699\uFE0F Using Storm Workspace configuration:
118
- ${_chunkMN3WWVZLcjs.formatLogMessage.call(void 0, config)}`,
118
+ ${_chunkLR6U6OBWcjs.formatLogMessage.call(void 0, config)}`,
119
119
  config
120
120
  );
121
121
  }
@@ -135,16 +135,16 @@ var tryLoadStormWorkspaceConfig = async (workspaceRoot, skipLogs = true, useDefa
135
135
  }
136
136
  _chunkY4QTE6AKcjs.setConfigEnv.call(void 0, config);
137
137
  if (!skipLogs && !config.skipConfigLogging) {
138
- _chunkMN3WWVZLcjs.writeTrace.call(void 0,
138
+ _chunkLR6U6OBWcjs.writeTrace.call(void 0,
139
139
  `\u2699\uFE0F Using Storm Workspace configuration:
140
- ${_chunkMN3WWVZLcjs.formatLogMessage.call(void 0, config)}`,
140
+ ${_chunkLR6U6OBWcjs.formatLogMessage.call(void 0, config)}`,
141
141
  config
142
142
  );
143
143
  }
144
144
  return config;
145
145
  } catch (error) {
146
146
  if (!skipLogs) {
147
- _chunkMN3WWVZLcjs.writeWarning.call(void 0,
147
+ _chunkLR6U6OBWcjs.writeWarning.call(void 0,
148
148
  `\u26A0\uFE0F Failed to load Storm Workspace configuration: ${error}`,
149
149
  { logLevel: "all" }
150
150
  );
@@ -76,7 +76,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
76
76
  return (message) => {
77
77
  console.debug(
78
78
  `
79
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
79
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
80
80
  `
81
81
  );
82
82
  };
@@ -85,7 +85,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
85
85
  return (message) => {
86
86
  console.debug(
87
87
  `
88
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
88
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
89
89
  `
90
90
  );
91
91
  };
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  loadStormWorkspaceConfig,
3
3
  tryLoadStormWorkspaceConfig
4
- } from "./chunk-4VMNC3KN.js";
4
+ } from "./chunk-QDUNMWAE.js";
5
5
  import {
6
6
  findWorkspaceRoot
7
7
  } from "./chunk-LF3SAK2O.js";
@@ -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 _chunkMN3WWVZLcjs = require('./chunk-MN3WWVZL.cjs');
3
+ var _chunkLR6U6OBWcjs = require('./chunk-LR6U6OBW.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
- _chunkMN3WWVZLcjs.writeError.call(void 0, `Cannot find a Cargo.toml file in the ${projectName}`);
10
+ _chunkLR6U6OBWcjs.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);
@@ -3,31 +3,31 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkMN3WWVZLcjs = require('./chunk-MN3WWVZL.cjs');
6
+ var _chunkLR6U6OBWcjs = require('./chunk-LR6U6OBW.cjs');
7
7
 
8
8
  // src/utilities/process-handler.ts
9
9
  var exitWithError = (config) => {
10
- _chunkMN3WWVZLcjs.writeFatal.call(void 0, "Exiting script with an error status...", config);
10
+ _chunkLR6U6OBWcjs.writeFatal.call(void 0, "Exiting script with an error status...", config);
11
11
  process.exit(1);
12
12
  };
13
13
  var exitWithSuccess = (config) => {
14
- _chunkMN3WWVZLcjs.writeSuccess.call(void 0, "Script completed successfully. Exiting...", config);
14
+ _chunkLR6U6OBWcjs.writeSuccess.call(void 0, "Script completed successfully. Exiting...", config);
15
15
  process.exit(0);
16
16
  };
17
17
  var handleProcess = (config) => {
18
- _chunkMN3WWVZLcjs.writeTrace.call(void 0,
18
+ _chunkLR6U6OBWcjs.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
- _chunkMN3WWVZLcjs.writeError.call(void 0,
23
+ _chunkLR6U6OBWcjs.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
- _chunkMN3WWVZLcjs.writeError.call(void 0,
30
+ _chunkLR6U6OBWcjs.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
- _chunkMN3WWVZLcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
38
+ _chunkLR6U6OBWcjs.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
- _chunkMN3WWVZLcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
42
+ _chunkLR6U6OBWcjs.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
- _chunkMN3WWVZLcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
46
+ _chunkLR6U6OBWcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
47
47
  exitWithError(config);
48
48
  });
49
49
  };
@@ -76,7 +76,7 @@ ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_n
76
76
  return (message) => {
77
77
  console.debug(
78
78
  `
79
- ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( _chunkIKP3QKCZcjs.DEFAULT_COLOR_CONFIG.dark.info)))(`[${_chunkWBQ4VS7Ecjs.CONSOLE_ICONS[_chunkIRCFHYKZcjs.LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
79
+ ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( _chunkIKP3QKCZcjs.DEFAULT_COLOR_CONFIG.dark.debug)))(`[${_chunkWBQ4VS7Ecjs.CONSOLE_ICONS[_chunkIRCFHYKZcjs.LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
80
80
  `
81
81
  );
82
82
  };
@@ -85,7 +85,7 @@ ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_n
85
85
  return (message) => {
86
86
  console.debug(
87
87
  `
88
- ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( _chunkIKP3QKCZcjs.DEFAULT_COLOR_CONFIG.dark.debug)))(`[${_chunkWBQ4VS7Ecjs.CONSOLE_ICONS[_chunkIRCFHYKZcjs.LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
88
+ ${_chalk.gray(_chunkBN6MEGGYcjs.formatTimestamp.call(void 0, ))} ${_chalk.hex("#bbbbbb")(`[${_chunkWBQ4VS7Ecjs.CONSOLE_ICONS[_chunkIRCFHYKZcjs.LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
89
89
  `
90
90
  );
91
91
  };
@@ -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 _chunkMN3WWVZLcjs = require('./chunk-MN3WWVZL.cjs');
4
+ var _chunkLR6U6OBWcjs = require('./chunk-LR6U6OBW.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 = _chunkMN3WWVZLcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.FATAL, config, _chalk2.default);
13
- const writeError = _chunkMN3WWVZLcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.ERROR, config, _chalk2.default);
14
- const writeWarning = _chunkMN3WWVZLcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.WARN, config, _chalk2.default);
15
- const writeInfo = _chunkMN3WWVZLcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.INFO, config, _chalk2.default);
16
- const writeSuccess = _chunkMN3WWVZLcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.SUCCESS, config, _chalk2.default);
17
- const writeDebug = _chunkMN3WWVZLcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.DEBUG, config, _chalk2.default);
18
- const writeTrace = _chunkMN3WWVZLcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.TRACE, config, _chalk2.default);
12
+ const writeFatal = _chunkLR6U6OBWcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.FATAL, config, _chalk2.default);
13
+ const writeError = _chunkLR6U6OBWcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.ERROR, config, _chalk2.default);
14
+ const writeWarning = _chunkLR6U6OBWcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.WARN, config, _chalk2.default);
15
+ const writeInfo = _chunkLR6U6OBWcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.INFO, config, _chalk2.default);
16
+ const writeSuccess = _chunkLR6U6OBWcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.SUCCESS, config, _chalk2.default);
17
+ const writeDebug = _chunkLR6U6OBWcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.DEBUG, config, _chalk2.default);
18
+ const writeTrace = _chunkLR6U6OBWcjs.getLogFn.call(void 0, _chunkIRCFHYKZcjs.LogLevel.TRACE, 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: _chunkMN3WWVZLcjs.getStopwatch
27
+ getStopwatch: _chunkLR6U6OBWcjs.getStopwatch
28
28
  };
29
29
  }
30
30
 
@@ -1,14 +1,14 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkMGK5WGAQcjs = require('./chunk-MGK5WGAQ.cjs');
4
+ var _chunkALARZAJQcjs = require('./chunk-ALARZAJQ.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 _chunkMGK5WGAQcjs.loadStormWorkspaceConfig.call(void 0, workspaceRoot, skipLogs);
11
+ return _chunkALARZAJQcjs.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 _chunkMGK5WGAQcjs.tryLoadStormWorkspaceConfig.call(void 0,
26
+ return _chunkALARZAJQcjs.tryLoadStormWorkspaceConfig.call(void 0,
27
27
  workspaceRoot,
28
28
  skipLogs,
29
29
  options.useDefault
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  writeError
3
- } from "./chunk-SUXNQ4FP.js";
3
+ } from "./chunk-BMTJACKJ.js";
4
4
 
5
5
  // src/utilities/toml.ts
6
6
  import TOML from "@ltd/j-toml";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getConfigFile
3
- } from "./chunk-C6VNQGUD.js";
3
+ } from "./chunk-YHW325ID.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-SUXNQ4FP.js";
15
+ } from "./chunk-BMTJACKJ.js";
16
16
  import {
17
17
  setConfigEnv
18
18
  } from "./chunk-4XFFB6C2.js";
@@ -3,7 +3,7 @@ import {
3
3
  writeFatal,
4
4
  writeSuccess,
5
5
  writeTrace
6
- } from "./chunk-SUXNQ4FP.js";
6
+ } from "./chunk-BMTJACKJ.js";
7
7
 
8
8
  // src/utilities/process-handler.ts
9
9
  var exitWithError = (config) => {
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-LF3SAK2O.js";
4
4
  import {
5
5
  writeTrace
6
- } from "./chunk-SUXNQ4FP.js";
6
+ } from "./chunk-BMTJACKJ.js";
7
7
  import {
8
8
  joinPaths
9
9
  } from "./chunk-V3GMJ4TX.js";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getLogFn,
3
3
  getStopwatch
4
- } from "./chunk-SUXNQ4FP.js";
4
+ } from "./chunk-BMTJACKJ.js";
5
5
  import {
6
6
  LogLevel
7
7
  } from "./chunk-POXTJ6GF.js";
@@ -1,19 +1,19 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk64PSPH5Ucjs = require('../chunk-64PSPH5U.cjs');
4
+ var _chunkA6A2A5EKcjs = require('../chunk-A6A2A5EK.cjs');
5
5
  require('../chunk-3COHMHPU.cjs');
6
- require('../chunk-SUZQQBAP.cjs');
6
+ require('../chunk-LMHBDNQR.cjs');
7
7
  require('../chunk-6Y623TCS.cjs');
8
- require('../chunk-IIM7XN2B.cjs');
8
+ require('../chunk-GHFENILR.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-SG5QE5ZG.cjs');
16
- require('../chunk-MN3WWVZL.cjs');
15
+ require('../chunk-N3LK3W3T.cjs');
16
+ require('../chunk-LR6U6OBW.cjs');
17
17
  require('../chunk-IKP3QKCZ.cjs');
18
18
  require('../chunk-LOY6ICHZ.cjs');
19
19
  require('../chunk-WBQ4VS7E.cjs');
@@ -25,4 +25,4 @@ require('../chunk-IRCFHYKZ.cjs');
25
25
 
26
26
 
27
27
 
28
- exports.getConfigFile = _chunk64PSPH5Ucjs.getConfigFile; exports.getConfigFileByName = _chunk64PSPH5Ucjs.getConfigFileByName;
28
+ exports.getConfigFile = _chunkA6A2A5EKcjs.getConfigFile; exports.getConfigFileByName = _chunkA6A2A5EKcjs.getConfigFileByName;
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  getConfigFile,
3
3
  getConfigFileByName
4
- } from "../chunk-C6VNQGUD.js";
4
+ } from "../chunk-YHW325ID.js";
5
5
  import "../chunk-UKGRDKIH.js";
6
- import "../chunk-3O7SBNQK.js";
6
+ import "../chunk-VIHD65EW.js";
7
7
  import "../chunk-EENQN6N2.js";
8
- import "../chunk-B3QZW2I4.js";
8
+ import "../chunk-ODZFMPTW.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-TV6VTZS6.js";
16
- import "../chunk-SUXNQ4FP.js";
15
+ import "../chunk-ZCFECSDH.js";
16
+ import "../chunk-BMTJACKJ.js";
17
17
  import "../chunk-DJB7XLHA.js";
18
18
  import "../chunk-HVVJHTFS.js";
19
19
  import "../chunk-LM2UMGYA.js";
@@ -2,19 +2,19 @@
2
2
 
3
3
 
4
4
 
5
- var _chunk64PSPH5Ucjs = require('../chunk-64PSPH5U.cjs');
5
+ var _chunkA6A2A5EKcjs = require('../chunk-A6A2A5EK.cjs');
6
6
  require('../chunk-3COHMHPU.cjs');
7
- require('../chunk-SUZQQBAP.cjs');
7
+ require('../chunk-LMHBDNQR.cjs');
8
8
  require('../chunk-6Y623TCS.cjs');
9
- require('../chunk-IIM7XN2B.cjs');
9
+ require('../chunk-GHFENILR.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-SG5QE5ZG.cjs');
17
- require('../chunk-MN3WWVZL.cjs');
16
+ require('../chunk-N3LK3W3T.cjs');
17
+ require('../chunk-LR6U6OBW.cjs');
18
18
  require('../chunk-IKP3QKCZ.cjs');
19
19
  require('../chunk-LOY6ICHZ.cjs');
20
20
  require('../chunk-WBQ4VS7E.cjs');
@@ -26,4 +26,4 @@ require('../chunk-IRCFHYKZ.cjs');
26
26
 
27
27
 
28
28
 
29
- exports.getConfigFile = _chunk64PSPH5Ucjs.getConfigFile; exports.getConfigFileByName = _chunk64PSPH5Ucjs.getConfigFileByName;
29
+ exports.getConfigFile = _chunkA6A2A5EKcjs.getConfigFile; exports.getConfigFileByName = _chunkA6A2A5EKcjs.getConfigFileByName;
@@ -2,19 +2,19 @@ import "../chunk-2AVLCXLT.js";
2
2
  import {
3
3
  getConfigFile,
4
4
  getConfigFileByName
5
- } from "../chunk-C6VNQGUD.js";
5
+ } from "../chunk-YHW325ID.js";
6
6
  import "../chunk-UKGRDKIH.js";
7
- import "../chunk-3O7SBNQK.js";
7
+ import "../chunk-VIHD65EW.js";
8
8
  import "../chunk-EENQN6N2.js";
9
- import "../chunk-B3QZW2I4.js";
9
+ import "../chunk-ODZFMPTW.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-TV6VTZS6.js";
17
- import "../chunk-SUXNQ4FP.js";
16
+ import "../chunk-ZCFECSDH.js";
17
+ import "../chunk-BMTJACKJ.js";
18
18
  import "../chunk-DJB7XLHA.js";
19
19
  import "../chunk-HVVJHTFS.js";
20
20
  import "../chunk-LM2UMGYA.js";
@@ -3,20 +3,20 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkMGK5WGAQcjs = require('./chunk-MGK5WGAQ.cjs');
7
- require('./chunk-64PSPH5U.cjs');
6
+ var _chunkALARZAJQcjs = require('./chunk-ALARZAJQ.cjs');
7
+ require('./chunk-A6A2A5EK.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
- require('./chunk-SUZQQBAP.cjs');
9
+ require('./chunk-LMHBDNQR.cjs');
10
10
  require('./chunk-6Y623TCS.cjs');
11
- require('./chunk-IIM7XN2B.cjs');
11
+ require('./chunk-GHFENILR.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-SG5QE5ZG.cjs');
19
- require('./chunk-MN3WWVZL.cjs');
18
+ require('./chunk-N3LK3W3T.cjs');
19
+ require('./chunk-LR6U6OBW.cjs');
20
20
  require('./chunk-IKP3QKCZ.cjs');
21
21
  require('./chunk-LOY6ICHZ.cjs');
22
22
  require('./chunk-WBQ4VS7E.cjs');
@@ -32,4 +32,4 @@ require('./chunk-IRCFHYKZ.cjs');
32
32
 
33
33
 
34
34
 
35
- exports.createConfigExtension = _chunkMGK5WGAQcjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkMGK5WGAQcjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkMGK5WGAQcjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkMGK5WGAQcjs.tryLoadStormWorkspaceConfig;
35
+ exports.createConfigExtension = _chunkALARZAJQcjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkALARZAJQcjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkALARZAJQcjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkALARZAJQcjs.tryLoadStormWorkspaceConfig;
@@ -3,20 +3,20 @@ import {
3
3
  createStormWorkspaceConfig,
4
4
  loadStormWorkspaceConfig,
5
5
  tryLoadStormWorkspaceConfig
6
- } from "./chunk-4VMNC3KN.js";
7
- import "./chunk-C6VNQGUD.js";
6
+ } from "./chunk-QDUNMWAE.js";
7
+ import "./chunk-YHW325ID.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
- import "./chunk-3O7SBNQK.js";
9
+ import "./chunk-VIHD65EW.js";
10
10
  import "./chunk-EENQN6N2.js";
11
- import "./chunk-B3QZW2I4.js";
11
+ import "./chunk-ODZFMPTW.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-TV6VTZS6.js";
19
- import "./chunk-SUXNQ4FP.js";
18
+ import "./chunk-ZCFECSDH.js";
19
+ import "./chunk-BMTJACKJ.js";
20
20
  import "./chunk-DJB7XLHA.js";
21
21
  import "./chunk-HVVJHTFS.js";
22
22
  import "./chunk-LM2UMGYA.js";
@@ -2,21 +2,21 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkM5AM7YAJcjs = require('./chunk-M5AM7YAJ.cjs');
6
- require('./chunk-MGK5WGAQ.cjs');
7
- require('./chunk-64PSPH5U.cjs');
5
+ var _chunkNU257TQ7cjs = require('./chunk-NU257TQ7.cjs');
6
+ require('./chunk-ALARZAJQ.cjs');
7
+ require('./chunk-A6A2A5EK.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
- require('./chunk-SUZQQBAP.cjs');
9
+ require('./chunk-LMHBDNQR.cjs');
10
10
  require('./chunk-6Y623TCS.cjs');
11
- require('./chunk-IIM7XN2B.cjs');
11
+ require('./chunk-GHFENILR.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-SG5QE5ZG.cjs');
19
- require('./chunk-MN3WWVZL.cjs');
18
+ require('./chunk-N3LK3W3T.cjs');
19
+ require('./chunk-LR6U6OBW.cjs');
20
20
  require('./chunk-IKP3QKCZ.cjs');
21
21
  require('./chunk-LOY6ICHZ.cjs');
22
22
  require('./chunk-WBQ4VS7E.cjs');
@@ -31,4 +31,4 @@ require('./chunk-IRCFHYKZ.cjs');
31
31
 
32
32
 
33
33
 
34
- exports.getConfig = _chunkM5AM7YAJcjs.getConfig; exports.getWorkspaceConfig = _chunkM5AM7YAJcjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkM5AM7YAJcjs.tryGetWorkspaceConfig;
34
+ exports.getConfig = _chunkNU257TQ7cjs.getConfig; exports.getWorkspaceConfig = _chunkNU257TQ7cjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkNU257TQ7cjs.tryGetWorkspaceConfig;
@@ -2,21 +2,21 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-ACQVK7YY.js";
6
- import "./chunk-4VMNC3KN.js";
7
- import "./chunk-C6VNQGUD.js";
5
+ } from "./chunk-BQLCBDR6.js";
6
+ import "./chunk-QDUNMWAE.js";
7
+ import "./chunk-YHW325ID.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
- import "./chunk-3O7SBNQK.js";
9
+ import "./chunk-VIHD65EW.js";
10
10
  import "./chunk-EENQN6N2.js";
11
- import "./chunk-B3QZW2I4.js";
11
+ import "./chunk-ODZFMPTW.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-TV6VTZS6.js";
19
- import "./chunk-SUXNQ4FP.js";
18
+ import "./chunk-ZCFECSDH.js";
19
+ import "./chunk-BMTJACKJ.js";
20
20
  import "./chunk-DJB7XLHA.js";
21
21
  import "./chunk-HVVJHTFS.js";
22
22
  import "./chunk-LM2UMGYA.js";
package/dist/index.cjs CHANGED
@@ -2,24 +2,24 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkM5AM7YAJcjs = require('./chunk-M5AM7YAJ.cjs');
5
+ var _chunkNU257TQ7cjs = require('./chunk-NU257TQ7.cjs');
6
6
 
7
7
 
8
8
 
9
9
 
10
10
 
11
- var _chunkMGK5WGAQcjs = require('./chunk-MGK5WGAQ.cjs');
11
+ var _chunkALARZAJQcjs = require('./chunk-ALARZAJQ.cjs');
12
12
  require('./chunk-IWD6YQKX.cjs');
13
13
 
14
14
 
15
15
 
16
- var _chunk64PSPH5Ucjs = require('./chunk-64PSPH5U.cjs');
16
+ var _chunkA6A2A5EKcjs = require('./chunk-A6A2A5EK.cjs');
17
17
  require('./chunk-3COHMHPU.cjs');
18
18
 
19
19
 
20
20
 
21
21
 
22
- var _chunkSUZQQBAPcjs = require('./chunk-SUZQQBAP.cjs');
22
+ var _chunkLMHBDNQRcjs = require('./chunk-LMHBDNQR.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 _chunkIIM7XN2Bcjs = require('./chunk-IIM7XN2B.cjs');
34
+ var _chunkGHFENILRcjs = require('./chunk-GHFENILR.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 _chunkSG5QE5ZGcjs = require('./chunk-SG5QE5ZG.cjs');
57
+ var _chunkN3LK3W3Tcjs = require('./chunk-N3LK3W3T.cjs');
58
58
 
59
59
 
60
60
 
@@ -67,7 +67,7 @@ var _chunkSG5QE5ZGcjs = require('./chunk-SG5QE5ZG.cjs');
67
67
 
68
68
 
69
69
 
70
- var _chunkMN3WWVZLcjs = require('./chunk-MN3WWVZL.cjs');
70
+ var _chunkLR6U6OBWcjs = require('./chunk-LR6U6OBW.cjs');
71
71
 
72
72
 
73
73
 
@@ -194,4 +194,4 @@ var _chunkIRCFHYKZcjs = require('./chunk-IRCFHYKZ.cjs');
194
194
 
195
195
 
196
196
 
197
- exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkIKP3QKCZcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; 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.createConfigExtension = _chunkMGK5WGAQcjs.createConfigExtension; exports.createLogger = _chunkSG5QE5ZGcjs.createLogger; exports.createStormWorkspaceConfig = _chunkMGK5WGAQcjs.createStormWorkspaceConfig; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunkSUZQQBAPcjs.exitWithError; exports.exitWithSuccess = _chunkSUZQQBAPcjs.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 = _chunkMN3WWVZLcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getColor = _chunkIKP3QKCZcjs.getColor; exports.getColors = _chunkIKP3QKCZcjs.getColors; exports.getConfig = _chunkM5AM7YAJcjs.getConfig; exports.getConfigEnv = _chunkI6JQJR5Wcjs.getConfigEnv; exports.getConfigFile = _chunk64PSPH5Ucjs.getConfigFile; exports.getConfigFileByName = _chunk64PSPH5Ucjs.getConfigFileByName; exports.getExtensionEnv = _chunkI6JQJR5Wcjs.getExtensionEnv; exports.getGradient = _chunkIKP3QKCZcjs.getGradient; exports.getLogFn = _chunkMN3WWVZLcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkMN3WWVZLcjs.getStopwatch; exports.getWorkspaceConfig = _chunkM5AM7YAJcjs.getWorkspaceConfig; exports.handleProcess = _chunkSUZQQBAPcjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkMGK5WGAQcjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkIIM7XN2Bcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkIIM7XN2Bcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkIIM7XN2Bcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkIIM7XN2Bcjs.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 = _chunkY4QTE6AKcjs.setConfigEnv; exports.setExtensionEnv = _chunkY4QTE6AKcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkIIM7XN2Bcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkM5AM7YAJcjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkMGK5WGAQcjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkMN3WWVZLcjs.writeDebug; exports.writeError = _chunkMN3WWVZLcjs.writeError; exports.writeFatal = _chunkMN3WWVZLcjs.writeFatal; exports.writeInfo = _chunkMN3WWVZLcjs.writeInfo; exports.writeSuccess = _chunkMN3WWVZLcjs.writeSuccess; exports.writeSystem = _chunkMN3WWVZLcjs.writeSystem; exports.writeTrace = _chunkMN3WWVZLcjs.writeTrace; exports.writeWarning = _chunkMN3WWVZLcjs.writeWarning;
197
+ exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkIKP3QKCZcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; 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.createConfigExtension = _chunkALARZAJQcjs.createConfigExtension; exports.createLogger = _chunkN3LK3W3Tcjs.createLogger; exports.createStormWorkspaceConfig = _chunkALARZAJQcjs.createStormWorkspaceConfig; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunkLMHBDNQRcjs.exitWithError; exports.exitWithSuccess = _chunkLMHBDNQRcjs.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 = _chunkLR6U6OBWcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getColor = _chunkIKP3QKCZcjs.getColor; exports.getColors = _chunkIKP3QKCZcjs.getColors; exports.getConfig = _chunkNU257TQ7cjs.getConfig; exports.getConfigEnv = _chunkI6JQJR5Wcjs.getConfigEnv; exports.getConfigFile = _chunkA6A2A5EKcjs.getConfigFile; exports.getConfigFileByName = _chunkA6A2A5EKcjs.getConfigFileByName; exports.getExtensionEnv = _chunkI6JQJR5Wcjs.getExtensionEnv; exports.getGradient = _chunkIKP3QKCZcjs.getGradient; exports.getLogFn = _chunkLR6U6OBWcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkLR6U6OBWcjs.getStopwatch; exports.getWorkspaceConfig = _chunkNU257TQ7cjs.getWorkspaceConfig; exports.handleProcess = _chunkLMHBDNQRcjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkALARZAJQcjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkGHFENILRcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkGHFENILRcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkGHFENILRcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkGHFENILRcjs.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 = _chunkY4QTE6AKcjs.setConfigEnv; exports.setExtensionEnv = _chunkY4QTE6AKcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkGHFENILRcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkNU257TQ7cjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkALARZAJQcjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkLR6U6OBWcjs.writeDebug; exports.writeError = _chunkLR6U6OBWcjs.writeError; exports.writeFatal = _chunkLR6U6OBWcjs.writeFatal; exports.writeInfo = _chunkLR6U6OBWcjs.writeInfo; exports.writeSuccess = _chunkLR6U6OBWcjs.writeSuccess; exports.writeSystem = _chunkLR6U6OBWcjs.writeSystem; exports.writeTrace = _chunkLR6U6OBWcjs.writeTrace; exports.writeWarning = _chunkLR6U6OBWcjs.writeWarning;
package/dist/index.js CHANGED
@@ -2,24 +2,24 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-ACQVK7YY.js";
5
+ } from "./chunk-BQLCBDR6.js";
6
6
  import {
7
7
  createConfigExtension,
8
8
  createStormWorkspaceConfig,
9
9
  loadStormWorkspaceConfig,
10
10
  tryLoadStormWorkspaceConfig
11
- } from "./chunk-4VMNC3KN.js";
11
+ } from "./chunk-QDUNMWAE.js";
12
12
  import "./chunk-2AVLCXLT.js";
13
13
  import {
14
14
  getConfigFile,
15
15
  getConfigFileByName
16
- } from "./chunk-C6VNQGUD.js";
16
+ } from "./chunk-YHW325ID.js";
17
17
  import "./chunk-UKGRDKIH.js";
18
18
  import {
19
19
  exitWithError,
20
20
  exitWithSuccess,
21
21
  handleProcess
22
- } from "./chunk-3O7SBNQK.js";
22
+ } from "./chunk-VIHD65EW.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-B3QZW2I4.js";
34
+ } from "./chunk-ODZFMPTW.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-TV6VTZS6.js";
57
+ } from "./chunk-ZCFECSDH.js";
58
58
  import {
59
59
  formatLogMessage,
60
60
  getLogFn,
@@ -67,7 +67,7 @@ import {
67
67
  writeSystem,
68
68
  writeTrace,
69
69
  writeWarning
70
- } from "./chunk-SUXNQ4FP.js";
70
+ } from "./chunk-BMTJACKJ.js";
71
71
  import {
72
72
  DEFAULT_COLOR_CONFIG,
73
73
  getColor,
@@ -10,7 +10,7 @@
10
10
 
11
11
 
12
12
 
13
- var _chunkMN3WWVZLcjs = require('../chunk-MN3WWVZL.cjs');
13
+ var _chunkLR6U6OBWcjs = require('../chunk-LR6U6OBW.cjs');
14
14
  require('../chunk-IKP3QKCZ.cjs');
15
15
  require('../chunk-LOY6ICHZ.cjs');
16
16
  require('../chunk-WBQ4VS7E.cjs');
@@ -30,4 +30,4 @@ require('../chunk-IRCFHYKZ.cjs');
30
30
 
31
31
 
32
32
 
33
- exports.formatLogMessage = _chunkMN3WWVZLcjs.formatLogMessage; exports.getLogFn = _chunkMN3WWVZLcjs.getLogFn; exports.getStopwatch = _chunkMN3WWVZLcjs.getStopwatch; exports.writeDebug = _chunkMN3WWVZLcjs.writeDebug; exports.writeError = _chunkMN3WWVZLcjs.writeError; exports.writeFatal = _chunkMN3WWVZLcjs.writeFatal; exports.writeInfo = _chunkMN3WWVZLcjs.writeInfo; exports.writeSuccess = _chunkMN3WWVZLcjs.writeSuccess; exports.writeSystem = _chunkMN3WWVZLcjs.writeSystem; exports.writeTrace = _chunkMN3WWVZLcjs.writeTrace; exports.writeWarning = _chunkMN3WWVZLcjs.writeWarning;
33
+ exports.formatLogMessage = _chunkLR6U6OBWcjs.formatLogMessage; exports.getLogFn = _chunkLR6U6OBWcjs.getLogFn; exports.getStopwatch = _chunkLR6U6OBWcjs.getStopwatch; exports.writeDebug = _chunkLR6U6OBWcjs.writeDebug; exports.writeError = _chunkLR6U6OBWcjs.writeError; exports.writeFatal = _chunkLR6U6OBWcjs.writeFatal; exports.writeInfo = _chunkLR6U6OBWcjs.writeInfo; exports.writeSuccess = _chunkLR6U6OBWcjs.writeSuccess; exports.writeSystem = _chunkLR6U6OBWcjs.writeSystem; exports.writeTrace = _chunkLR6U6OBWcjs.writeTrace; exports.writeWarning = _chunkLR6U6OBWcjs.writeWarning;
@@ -10,7 +10,7 @@ import {
10
10
  writeSystem,
11
11
  writeTrace,
12
12
  writeWarning
13
- } from "../chunk-SUXNQ4FP.js";
13
+ } from "../chunk-BMTJACKJ.js";
14
14
  import "../chunk-DJB7XLHA.js";
15
15
  import "../chunk-HVVJHTFS.js";
16
16
  import "../chunk-LM2UMGYA.js";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkSG5QE5ZGcjs = require('../chunk-SG5QE5ZG.cjs');
4
- require('../chunk-MN3WWVZL.cjs');
3
+ var _chunkN3LK3W3Tcjs = require('../chunk-N3LK3W3T.cjs');
4
+ require('../chunk-LR6U6OBW.cjs');
5
5
  require('../chunk-IKP3QKCZ.cjs');
6
6
  require('../chunk-LOY6ICHZ.cjs');
7
7
  require('../chunk-WBQ4VS7E.cjs');
@@ -11,4 +11,4 @@ require('../chunk-4PX5UVAN.cjs');
11
11
  require('../chunk-IRCFHYKZ.cjs');
12
12
 
13
13
 
14
- exports.createLogger = _chunkSG5QE5ZGcjs.createLogger;
14
+ exports.createLogger = _chunkN3LK3W3Tcjs.createLogger;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createLogger
3
- } from "../chunk-TV6VTZS6.js";
4
- import "../chunk-SUXNQ4FP.js";
3
+ } from "../chunk-ZCFECSDH.js";
4
+ import "../chunk-BMTJACKJ.js";
5
5
  import "../chunk-DJB7XLHA.js";
6
6
  import "../chunk-HVVJHTFS.js";
7
7
  import "../chunk-LM2UMGYA.js";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-7PV6L7I7.cjs');
2
2
 
3
3
 
4
- var _chunkSG5QE5ZGcjs = require('../chunk-SG5QE5ZG.cjs');
4
+ var _chunkN3LK3W3Tcjs = require('../chunk-N3LK3W3T.cjs');
5
5
 
6
6
 
7
7
 
@@ -14,7 +14,7 @@ var _chunkSG5QE5ZGcjs = require('../chunk-SG5QE5ZG.cjs');
14
14
 
15
15
 
16
16
 
17
- var _chunkMN3WWVZLcjs = require('../chunk-MN3WWVZL.cjs');
17
+ var _chunkLR6U6OBWcjs = require('../chunk-LR6U6OBW.cjs');
18
18
  require('../chunk-IKP3QKCZ.cjs');
19
19
 
20
20
 
@@ -54,4 +54,4 @@ require('../chunk-IRCFHYKZ.cjs');
54
54
 
55
55
 
56
56
 
57
- exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.createLogger = _chunkSG5QE5ZGcjs.createLogger; exports.formatLogMessage = _chunkMN3WWVZLcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getLogFn = _chunkMN3WWVZLcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getStopwatch = _chunkMN3WWVZLcjs.getStopwatch; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.writeDebug = _chunkMN3WWVZLcjs.writeDebug; exports.writeError = _chunkMN3WWVZLcjs.writeError; exports.writeFatal = _chunkMN3WWVZLcjs.writeFatal; exports.writeInfo = _chunkMN3WWVZLcjs.writeInfo; exports.writeSuccess = _chunkMN3WWVZLcjs.writeSuccess; exports.writeSystem = _chunkMN3WWVZLcjs.writeSystem; exports.writeTrace = _chunkMN3WWVZLcjs.writeTrace; exports.writeWarning = _chunkMN3WWVZLcjs.writeWarning;
57
+ exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.createLogger = _chunkN3LK3W3Tcjs.createLogger; exports.formatLogMessage = _chunkLR6U6OBWcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getLogFn = _chunkLR6U6OBWcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getStopwatch = _chunkLR6U6OBWcjs.getStopwatch; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.writeDebug = _chunkLR6U6OBWcjs.writeDebug; exports.writeError = _chunkLR6U6OBWcjs.writeError; exports.writeFatal = _chunkLR6U6OBWcjs.writeFatal; exports.writeInfo = _chunkLR6U6OBWcjs.writeInfo; exports.writeSuccess = _chunkLR6U6OBWcjs.writeSuccess; exports.writeSystem = _chunkLR6U6OBWcjs.writeSystem; exports.writeTrace = _chunkLR6U6OBWcjs.writeTrace; exports.writeWarning = _chunkLR6U6OBWcjs.writeWarning;
@@ -1,7 +1,7 @@
1
1
  import "../chunk-RRKB32OH.js";
2
2
  import {
3
3
  createLogger
4
- } from "../chunk-TV6VTZS6.js";
4
+ } from "../chunk-ZCFECSDH.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-SUXNQ4FP.js";
17
+ } from "../chunk-BMTJACKJ.js";
18
18
  import "../chunk-DJB7XLHA.js";
19
19
  import {
20
20
  getChalk
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkSUZQQBAPcjs = require('../chunk-SUZQQBAP.cjs');
6
+ var _chunkLMHBDNQRcjs = require('../chunk-LMHBDNQR.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 _chunkIIM7XN2Bcjs = require('../chunk-IIM7XN2B.cjs');
18
+ var _chunkGHFENILRcjs = require('../chunk-GHFENILR.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-SG5QE5ZG.cjs');
40
- require('../chunk-MN3WWVZL.cjs');
39
+ require('../chunk-N3LK3W3T.cjs');
40
+ require('../chunk-LR6U6OBW.cjs');
41
41
 
42
42
 
43
43
 
@@ -106,4 +106,4 @@ require('../chunk-IRCFHYKZ.cjs');
106
106
 
107
107
 
108
108
 
109
- exports.DEFAULT_COLOR_CONFIG = _chunkIKP3QKCZcjs.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 = _chunkSUZQQBAPcjs.exitWithError; exports.exitWithSuccess = _chunkSUZQQBAPcjs.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 = _chunkIKP3QKCZcjs.getColor; exports.getColors = _chunkIKP3QKCZcjs.getColors; exports.getGradient = _chunkIKP3QKCZcjs.getGradient; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.handleProcess = _chunkSUZQQBAPcjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.modifyCargoNestedTable = _chunkIIM7XN2Bcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkIIM7XN2Bcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkIIM7XN2Bcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkIIM7XN2Bcjs.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 = _chunkIIM7XN2Bcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath;
109
+ exports.DEFAULT_COLOR_CONFIG = _chunkIKP3QKCZcjs.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 = _chunkLMHBDNQRcjs.exitWithError; exports.exitWithSuccess = _chunkLMHBDNQRcjs.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 = _chunkIKP3QKCZcjs.getColor; exports.getColors = _chunkIKP3QKCZcjs.getColors; exports.getGradient = _chunkIKP3QKCZcjs.getGradient; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.handleProcess = _chunkLMHBDNQRcjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.modifyCargoNestedTable = _chunkGHFENILRcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkGHFENILRcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkGHFENILRcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkGHFENILRcjs.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 = _chunkGHFENILRcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath;
@@ -3,7 +3,7 @@ import {
3
3
  exitWithError,
4
4
  exitWithSuccess,
5
5
  handleProcess
6
- } from "../chunk-3O7SBNQK.js";
6
+ } from "../chunk-VIHD65EW.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-B3QZW2I4.js";
18
+ } from "../chunk-ODZFMPTW.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-TV6VTZS6.js";
40
- import "../chunk-SUXNQ4FP.js";
39
+ import "../chunk-ZCFECSDH.js";
40
+ import "../chunk-BMTJACKJ.js";
41
41
  import {
42
42
  DEFAULT_COLOR_CONFIG,
43
43
  getColor,
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkSUZQQBAPcjs = require('../chunk-SUZQQBAP.cjs');
6
- require('../chunk-MN3WWVZL.cjs');
5
+ var _chunkLMHBDNQRcjs = require('../chunk-LMHBDNQR.cjs');
6
+ require('../chunk-LR6U6OBW.cjs');
7
7
  require('../chunk-IKP3QKCZ.cjs');
8
8
  require('../chunk-LOY6ICHZ.cjs');
9
9
  require('../chunk-WBQ4VS7E.cjs');
@@ -15,4 +15,4 @@ require('../chunk-IRCFHYKZ.cjs');
15
15
 
16
16
 
17
17
 
18
- exports.exitWithError = _chunkSUZQQBAPcjs.exitWithError; exports.exitWithSuccess = _chunkSUZQQBAPcjs.exitWithSuccess; exports.handleProcess = _chunkSUZQQBAPcjs.handleProcess;
18
+ exports.exitWithError = _chunkLMHBDNQRcjs.exitWithError; exports.exitWithSuccess = _chunkLMHBDNQRcjs.exitWithSuccess; exports.handleProcess = _chunkLMHBDNQRcjs.handleProcess;
@@ -2,8 +2,8 @@ import {
2
2
  exitWithError,
3
3
  exitWithSuccess,
4
4
  handleProcess
5
- } from "../chunk-3O7SBNQK.js";
6
- import "../chunk-SUXNQ4FP.js";
5
+ } from "../chunk-VIHD65EW.js";
6
+ import "../chunk-BMTJACKJ.js";
7
7
  import "../chunk-DJB7XLHA.js";
8
8
  import "../chunk-HVVJHTFS.js";
9
9
  import "../chunk-LM2UMGYA.js";
@@ -4,10 +4,10 @@
4
4
 
5
5
 
6
6
 
7
- var _chunkIIM7XN2Bcjs = require('../chunk-IIM7XN2B.cjs');
7
+ var _chunkGHFENILRcjs = require('../chunk-GHFENILR.cjs');
8
8
  require('../chunk-7PV6L7I7.cjs');
9
- require('../chunk-SG5QE5ZG.cjs');
10
- require('../chunk-MN3WWVZL.cjs');
9
+ require('../chunk-N3LK3W3T.cjs');
10
+ require('../chunk-LR6U6OBW.cjs');
11
11
  require('../chunk-IKP3QKCZ.cjs');
12
12
  require('../chunk-LOY6ICHZ.cjs');
13
13
  require('../chunk-WBQ4VS7E.cjs');
@@ -21,4 +21,4 @@ require('../chunk-IRCFHYKZ.cjs');
21
21
 
22
22
 
23
23
 
24
- exports.modifyCargoNestedTable = _chunkIIM7XN2Bcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkIIM7XN2Bcjs.modifyCargoTable; exports.parseCargoToml = _chunkIIM7XN2Bcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkIIM7XN2Bcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunkIIM7XN2Bcjs.stringifyCargoToml;
24
+ exports.modifyCargoNestedTable = _chunkGHFENILRcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkGHFENILRcjs.modifyCargoTable; exports.parseCargoToml = _chunkGHFENILRcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkGHFENILRcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunkGHFENILRcjs.stringifyCargoToml;
@@ -4,10 +4,10 @@ import {
4
4
  parseCargoToml,
5
5
  parseCargoTomlWithTree,
6
6
  stringifyCargoToml
7
- } from "../chunk-B3QZW2I4.js";
7
+ } from "../chunk-ODZFMPTW.js";
8
8
  import "../chunk-RRKB32OH.js";
9
- import "../chunk-TV6VTZS6.js";
10
- import "../chunk-SUXNQ4FP.js";
9
+ import "../chunk-ZCFECSDH.js";
10
+ import "../chunk-BMTJACKJ.js";
11
11
  import "../chunk-DJB7XLHA.js";
12
12
  import "../chunk-HVVJHTFS.js";
13
13
  import "../chunk-LM2UMGYA.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.188.76",
3
+ "version": "1.188.77",
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": {
@@ -225,5 +225,5 @@
225
225
  "devDependencies": { "@types/node": "^24.10.4", "tsup": "8.4.0" },
226
226
  "publishConfig": { "access": "public" },
227
227
  "sideEffects": false,
228
- "gitHead": "e19d4a36814afd4e68d56d8c7e620ec273b71a03"
228
+ "gitHead": "d07f74f1d50951459260d2738dea47586e194f7f"
229
229
  }