@storm-software/config-tools 1.190.13 → 1.190.15

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 (41) hide show
  1. package/bin/config.cjs +17 -8
  2. package/bin/config.js +17 -8
  3. package/dist/{chunk-S22A75II.cjs → chunk-44SHQAD4.cjs} +10 -10
  4. package/dist/{chunk-TOMKPXJE.js → chunk-4UFIHIMZ.js} +17 -8
  5. package/dist/{chunk-7KE7OYDW.js → chunk-5NAMOQCY.js} +1 -1
  6. package/dist/{chunk-DZS54O6N.cjs → chunk-AZJQFL6W.cjs} +17 -8
  7. package/dist/{chunk-PAQH5U2F.cjs → chunk-DFWIRJGH.cjs} +3 -3
  8. package/dist/{chunk-ORVHSCSN.js → chunk-FXQGOFJI.js} +1 -1
  9. package/dist/{chunk-KOSKDPTM.cjs → chunk-KRVACLYZ.cjs} +3 -3
  10. package/dist/{chunk-PN7H7GUE.js → chunk-MOXINQRL.js} +1 -1
  11. package/dist/{chunk-EEPODKNE.cjs → chunk-QXMSQMVN.cjs} +10 -10
  12. package/dist/{chunk-HUQ5Y2QK.cjs → chunk-R5BZDTQW.cjs} +2 -2
  13. package/dist/{chunk-CZGO7WY3.js → chunk-TIH4RSTL.js} +1 -1
  14. package/dist/{chunk-6IBSNO2S.cjs → chunk-TW273ZN4.cjs} +9 -9
  15. package/dist/{chunk-KVDT6KNS.js → chunk-UWI3QVYJ.js} +2 -2
  16. package/dist/{chunk-KLUNEHDC.js → chunk-VEYONVTU.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.d.cts +9 -0
  29. package/dist/logger/console.d.ts +9 -0
  30. package/dist/logger/console.js +1 -1
  31. package/dist/logger/create-logger.cjs +3 -3
  32. package/dist/logger/create-logger.js +2 -2
  33. package/dist/logger/index.cjs +3 -3
  34. package/dist/logger/index.js +2 -2
  35. package/dist/utilities/index.cjs +5 -5
  36. package/dist/utilities/index.js +4 -4
  37. package/dist/utilities/process-handler.cjs +3 -3
  38. package/dist/utilities/process-handler.js +2 -2
  39. package/dist/utilities/toml.cjs +4 -4
  40. package/dist/utilities/toml.js +3 -3
  41. package/package.json +3 -3
package/bin/config.cjs CHANGED
@@ -377,22 +377,31 @@ var writeWarning = (message, config) => getLogFn(LogLevel.WARN, config)(message)
377
377
  var writeInfo = (message, config) => getLogFn(LogLevel.INFO, config)(message);
378
378
  var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(message);
379
379
  var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
380
- var MAX_DEPTH = 6;
380
+ var MAX_DEPTH = 10;
381
381
  var formatLogMessage = (message, options = {}, depth2 = 0) => {
382
382
  if (depth2 > MAX_DEPTH) {
383
383
  return "<max depth>";
384
384
  }
385
- const prefix = options.prefix ?? "-";
385
+ const prefix = options.prefix ?? "";
386
386
  const skip = options.skip ?? [];
387
- return typeof message === "undefined" || message === null || !message && typeof message !== "boolean" ? "<none>" : typeof message === "string" ? message : Array.isArray(message) ? `
388
- ${message.map((item, index) => ` ${prefix}> #${index} = ${formatLogMessage(item, { prefix: `${prefix}-`, skip }, depth2 + 1)}`).join("\n")}` : typeof message === "object" ? `
389
- ${Object.keys(message).filter((key) => !skip.includes(key)).map(
390
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? formatLogMessage(
387
+ const sort = options.sort ?? true;
388
+ return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
389
+ ${message.map(
390
+ (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
391
+ item,
392
+ { prefix: `${prefix}--`, skip, sort },
393
+ depth2 + 1
394
+ )}`
395
+ ).join("\n")}` : typeof message === "object" ? `
396
+ ${Object.keys(message).filter((key) => !skip.includes(key)).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
397
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
398
+ (key2) => !skip.includes(key2)
399
+ ).length === 0 ? "{}" : formatLogMessage(
391
400
  message[key],
392
- { prefix: `${prefix}-`, skip },
401
+ { prefix: `${prefix}--`, skip, sort },
393
402
  depth2 + 1
394
403
  ) : message[key]}`
395
- ).join("\n")}` : message;
404
+ ).join("\n")}` : String(message);
396
405
  };
397
406
  var _isFunction = (value) => {
398
407
  try {
package/bin/config.js CHANGED
@@ -344,22 +344,31 @@ var writeWarning = (message, config) => getLogFn(LogLevel.WARN, config)(message)
344
344
  var writeInfo = (message, config) => getLogFn(LogLevel.INFO, config)(message);
345
345
  var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(message);
346
346
  var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
347
- var MAX_DEPTH = 6;
347
+ var MAX_DEPTH = 10;
348
348
  var formatLogMessage = (message, options = {}, depth2 = 0) => {
349
349
  if (depth2 > MAX_DEPTH) {
350
350
  return "<max depth>";
351
351
  }
352
- const prefix = options.prefix ?? "-";
352
+ const prefix = options.prefix ?? "";
353
353
  const skip = options.skip ?? [];
354
- return typeof message === "undefined" || message === null || !message && typeof message !== "boolean" ? "<none>" : typeof message === "string" ? message : Array.isArray(message) ? `
355
- ${message.map((item, index) => ` ${prefix}> #${index} = ${formatLogMessage(item, { prefix: `${prefix}-`, skip }, depth2 + 1)}`).join("\n")}` : typeof message === "object" ? `
356
- ${Object.keys(message).filter((key) => !skip.includes(key)).map(
357
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? formatLogMessage(
354
+ const sort = options.sort ?? true;
355
+ return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
356
+ ${message.map(
357
+ (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
358
+ item,
359
+ { prefix: `${prefix}--`, skip, sort },
360
+ depth2 + 1
361
+ )}`
362
+ ).join("\n")}` : typeof message === "object" ? `
363
+ ${Object.keys(message).filter((key) => !skip.includes(key)).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
364
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
365
+ (key2) => !skip.includes(key2)
366
+ ).length === 0 ? "{}" : formatLogMessage(
358
367
  message[key],
359
- { prefix: `${prefix}-`, skip },
368
+ { prefix: `${prefix}--`, skip, sort },
360
369
  depth2 + 1
361
370
  ) : message[key]}`
362
- ).join("\n")}` : message;
371
+ ).join("\n")}` : String(message);
363
372
  };
364
373
  var _isFunction = (value) => {
365
374
  try {
@@ -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 _chunkDZS54O6Ncjs = require('./chunk-DZS54O6N.cjs');
4
+ var _chunkAZJQFL6Wcjs = require('./chunk-AZJQFL6W.cjs');
5
5
 
6
6
 
7
7
  var _chunk7QBTVNMRcjs = require('./chunk-7QBTVNMR.cjs');
@@ -9,14 +9,14 @@ var _chunk7QBTVNMRcjs = require('./chunk-7QBTVNMR.cjs');
9
9
  // src/logger/create-logger.ts
10
10
  var _chalk = require('chalk'); var _chalk2 = _interopRequireDefault(_chalk);
11
11
  async function createLogger(config) {
12
- const writeFatal = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.FATAL, config, { chalk: _chalk2.default });
13
- const writeError = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.ERROR, config, { chalk: _chalk2.default });
14
- const writeWarning = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.WARN, config, { chalk: _chalk2.default });
15
- const writeInfo = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.INFO, config, { chalk: _chalk2.default });
16
- const writeSuccess = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.SUCCESS, config, { chalk: _chalk2.default });
17
- const writeDebug = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.DEBUG, config, { chalk: _chalk2.default });
18
- const writePerformance = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.PERFORMANCE, config, { chalk: _chalk2.default });
19
- const writeTrace = _chunkDZS54O6Ncjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.TRACE, config, { chalk: _chalk2.default });
12
+ const writeFatal = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.FATAL, config, { chalk: _chalk2.default });
13
+ const writeError = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.ERROR, config, { chalk: _chalk2.default });
14
+ const writeWarning = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.WARN, config, { chalk: _chalk2.default });
15
+ const writeInfo = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.INFO, config, { chalk: _chalk2.default });
16
+ const writeSuccess = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.SUCCESS, config, { chalk: _chalk2.default });
17
+ const writeDebug = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.DEBUG, config, { chalk: _chalk2.default });
18
+ const writePerformance = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.PERFORMANCE, config, { chalk: _chalk2.default });
19
+ const writeTrace = _chunkAZJQFL6Wcjs.getLogFn.call(void 0, _chunk7QBTVNMRcjs.LogLevel.TRACE, config, { chalk: _chalk2.default });
20
20
  return {
21
21
  fatal: writeFatal,
22
22
  error: writeError,
@@ -26,7 +26,7 @@ async function createLogger(config) {
26
26
  performance: writePerformance,
27
27
  debug: writeDebug,
28
28
  trace: writeTrace,
29
- getStopwatch: _chunkDZS54O6Ncjs.getStopwatch
29
+ getStopwatch: _chunkAZJQFL6Wcjs.getStopwatch
30
30
  };
31
31
  }
32
32
 
@@ -889,22 +889,31 @@ var getStopwatch = (name) => {
889
889
  );
890
890
  };
891
891
  };
892
- var MAX_DEPTH = 6;
892
+ var MAX_DEPTH = 10;
893
893
  var formatLogMessage = (message, options = {}, depth = 0) => {
894
894
  if (depth > MAX_DEPTH) {
895
895
  return "<max depth>";
896
896
  }
897
- const prefix = options.prefix ?? "-";
897
+ const prefix = options.prefix ?? "";
898
898
  const skip = options.skip ?? [];
899
- return typeof message === "undefined" || message === null || !message && typeof message !== "boolean" ? "<none>" : typeof message === "string" ? message : Array.isArray(message) ? `
900
- ${message.map((item, index) => ` ${prefix}> #${index} = ${formatLogMessage(item, { prefix: `${prefix}-`, skip }, depth + 1)}`).join("\n")}` : typeof message === "object" ? `
901
- ${Object.keys(message).filter((key) => !skip.includes(key)).map(
902
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? formatLogMessage(
899
+ const sort = options.sort ?? true;
900
+ return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
901
+ ${message.map(
902
+ (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
903
+ item,
904
+ { prefix: `${prefix}--`, skip, sort },
905
+ depth + 1
906
+ )}`
907
+ ).join("\n")}` : typeof message === "object" ? `
908
+ ${Object.keys(message).filter((key) => !skip.includes(key)).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
909
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
910
+ (key2) => !skip.includes(key2)
911
+ ).length === 0 ? "{}" : formatLogMessage(
903
912
  message[key],
904
- { prefix: `${prefix}-`, skip },
913
+ { prefix: `${prefix}--`, skip, sort },
905
914
  depth + 1
906
915
  ) : message[key]}`
907
- ).join("\n")}` : message;
916
+ ).join("\n")}` : String(message);
908
917
  };
909
918
  var _isFunction = (value) => {
910
919
  try {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getLogFn,
3
3
  getStopwatch
4
- } from "./chunk-TOMKPXJE.js";
4
+ } from "./chunk-4UFIHIMZ.js";
5
5
  import {
6
6
  LogLevel
7
7
  } from "./chunk-RALMUN5C.js";
@@ -889,22 +889,31 @@ var getStopwatch = (name) => {
889
889
  );
890
890
  };
891
891
  };
892
- var MAX_DEPTH = 6;
892
+ var MAX_DEPTH = 10;
893
893
  var formatLogMessage = (message, options = {}, depth = 0) => {
894
894
  if (depth > MAX_DEPTH) {
895
895
  return "<max depth>";
896
896
  }
897
- const prefix = _nullishCoalesce(options.prefix, () => ( "-"));
897
+ const prefix = _nullishCoalesce(options.prefix, () => ( ""));
898
898
  const skip = _nullishCoalesce(options.skip, () => ( []));
899
- return typeof message === "undefined" || message === null || !message && typeof message !== "boolean" ? "<none>" : typeof message === "string" ? message : Array.isArray(message) ? `
900
- ${message.map((item, index) => ` ${prefix}> #${index} = ${formatLogMessage(item, { prefix: `${prefix}-`, skip }, depth + 1)}`).join("\n")}` : typeof message === "object" ? `
901
- ${Object.keys(message).filter((key) => !skip.includes(key)).map(
902
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? formatLogMessage(
899
+ const sort = _nullishCoalesce(options.sort, () => ( true));
900
+ return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
901
+ ${message.map(
902
+ (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
903
+ item,
904
+ { prefix: `${prefix}--`, skip, sort },
905
+ depth + 1
906
+ )}`
907
+ ).join("\n")}` : typeof message === "object" ? `
908
+ ${Object.keys(message).filter((key) => !skip.includes(key)).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
909
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
910
+ (key2) => !skip.includes(key2)
911
+ ).length === 0 ? "{}" : formatLogMessage(
903
912
  message[key],
904
- { prefix: `${prefix}-`, skip },
913
+ { prefix: `${prefix}--`, skip, sort },
905
914
  depth + 1
906
915
  ) : message[key]}`
907
- ).join("\n")}` : message;
916
+ ).join("\n")}` : String(message);
908
917
  };
909
918
  var _isFunction = (value) => {
910
919
  try {
@@ -3,7 +3,7 @@
3
3
  var _chunk3CNCDDWZcjs = require('./chunk-3CNCDDWZ.cjs');
4
4
 
5
5
 
6
- var _chunkDZS54O6Ncjs = require('./chunk-DZS54O6N.cjs');
6
+ var _chunkAZJQFL6Wcjs = require('./chunk-AZJQFL6W.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
- _chunkDZS54O6Ncjs.writeTrace.call(void 0,
55
+ _chunkAZJQFL6Wcjs.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
- _chunkDZS54O6Ncjs.writeTrace.call(void 0,
71
+ _chunkAZJQFL6Wcjs.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"
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-LF3SAK2O.js";
4
4
  import {
5
5
  writeTrace
6
- } from "./chunk-TOMKPXJE.js";
6
+ } from "./chunk-4UFIHIMZ.js";
7
7
  import {
8
8
  joinPaths
9
9
  } from "./chunk-V3GMJ4TX.js";
@@ -1,14 +1,14 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkEEPODKNEcjs = require('./chunk-EEPODKNE.cjs');
4
+ var _chunkQXMSQMVNcjs = require('./chunk-QXMSQMVN.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 _chunkEEPODKNEcjs.loadStormWorkspaceConfig.call(void 0, workspaceRoot, skipLogs);
11
+ return _chunkQXMSQMVNcjs.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 _chunkEEPODKNEcjs.tryLoadStormWorkspaceConfig.call(void 0,
26
+ return _chunkQXMSQMVNcjs.tryLoadStormWorkspaceConfig.call(void 0,
27
27
  workspaceRoot,
28
28
  skipLogs,
29
29
  options.useDefault
@@ -3,7 +3,7 @@ import {
3
3
  writeFatal,
4
4
  writeSuccess,
5
5
  writeTrace
6
- } from "./chunk-TOMKPXJE.js";
6
+ } from "./chunk-4UFIHIMZ.js";
7
7
 
8
8
  // src/utilities/process-handler.ts
9
9
  var exitWithError = (config) => {
@@ -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 _chunkPAQH5U2Fcjs = require('./chunk-PAQH5U2F.cjs');
3
+ var _chunkDFWIRJGHcjs = require('./chunk-DFWIRJGH.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 _chunkDZS54O6Ncjs = require('./chunk-DZS54O6N.cjs');
15
+ var _chunkAZJQFL6Wcjs = require('./chunk-AZJQFL6W.cjs');
16
16
 
17
17
 
18
18
  var _chunkB2CQPVVLcjs = require('./chunk-B2CQPVVL.cjs');
@@ -38,10 +38,10 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
38
38
  _workspaceRoot = _chunk3CNCDDWZcjs.findWorkspaceRoot.call(void 0, );
39
39
  }
40
40
  const configEnv = _chunkNHILCONIcjs.getConfigEnv.call(void 0, );
41
- const configFile = await _chunkPAQH5U2Fcjs.getConfigFile.call(void 0, _workspaceRoot);
41
+ const configFile = await _chunkDFWIRJGHcjs.getConfigFile.call(void 0, _workspaceRoot);
42
42
  if (!configFile) {
43
43
  if (!skipLogs) {
44
- _chunkDZS54O6Ncjs.writeWarning.call(void 0,
44
+ _chunkAZJQFL6Wcjs.writeWarning.call(void 0,
45
45
  "No Storm Workspace configuration file found in the current repository. Please ensure this is the expected behavior - you can add a `storm-workspace.json` file to the root of your workspace if it is not.\n",
46
46
  { logLevel: "all" }
47
47
  );
@@ -72,7 +72,7 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
72
72
  throw new Error(
73
73
  `Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess', _3 => _3.message]) ? `: ${error.message}` : ""}
74
74
 
75
- Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${_chunkDZS54O6Ncjs.formatLogMessage.call(void 0,
75
+ Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${_chunkAZJQFL6Wcjs.formatLogMessage.call(void 0,
76
76
  configInput
77
77
  )}`,
78
78
  {
@@ -117,9 +117,9 @@ var loadStormWorkspaceConfig = async (workspaceRoot, skipLogs = false) => {
117
117
  );
118
118
  _chunkB2CQPVVLcjs.setConfigEnv.call(void 0, config);
119
119
  if (!skipLogs && !config.skipConfigLogging) {
120
- _chunkDZS54O6Ncjs.writeTrace.call(void 0,
120
+ _chunkAZJQFL6Wcjs.writeTrace.call(void 0,
121
121
  `\u2699\uFE0F Using Storm Workspace configuration:
122
- ${_chunkDZS54O6Ncjs.formatLogMessage.call(void 0, config)}`,
122
+ ${_chunkAZJQFL6Wcjs.formatLogMessage.call(void 0, config)}`,
123
123
  config
124
124
  );
125
125
  }
@@ -139,16 +139,16 @@ var tryLoadStormWorkspaceConfig = async (workspaceRoot, skipLogs = true, useDefa
139
139
  }
140
140
  _chunkB2CQPVVLcjs.setConfigEnv.call(void 0, config);
141
141
  if (!skipLogs && !config.skipConfigLogging) {
142
- _chunkDZS54O6Ncjs.writeTrace.call(void 0,
142
+ _chunkAZJQFL6Wcjs.writeTrace.call(void 0,
143
143
  `\u2699\uFE0F Using Storm Workspace configuration:
144
- ${_chunkDZS54O6Ncjs.formatLogMessage.call(void 0, config)}`,
144
+ ${_chunkAZJQFL6Wcjs.formatLogMessage.call(void 0, config)}`,
145
145
  config
146
146
  );
147
147
  }
148
148
  return config;
149
149
  } catch (error) {
150
150
  if (!skipLogs) {
151
- _chunkDZS54O6Ncjs.writeWarning.call(void 0,
151
+ _chunkAZJQFL6Wcjs.writeWarning.call(void 0,
152
152
  `\u26A0\uFE0F Failed to load Storm Workspace configuration: ${error}`,
153
153
  { logLevel: "all" }
154
154
  );
@@ -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 _chunkDZS54O6Ncjs = require('./chunk-DZS54O6N.cjs');
3
+ var _chunkAZJQFL6Wcjs = require('./chunk-AZJQFL6W.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
- _chunkDZS54O6Ncjs.writeError.call(void 0, `Cannot find a Cargo.toml file in the ${projectName}`);
10
+ _chunkAZJQFL6Wcjs.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,7 +1,7 @@
1
1
  import {
2
2
  loadStormWorkspaceConfig,
3
3
  tryLoadStormWorkspaceConfig
4
- } from "./chunk-KVDT6KNS.js";
4
+ } from "./chunk-UWI3QVYJ.js";
5
5
  import {
6
6
  findWorkspaceRoot
7
7
  } from "./chunk-LF3SAK2O.js";
@@ -3,31 +3,31 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkDZS54O6Ncjs = require('./chunk-DZS54O6N.cjs');
6
+ var _chunkAZJQFL6Wcjs = require('./chunk-AZJQFL6W.cjs');
7
7
 
8
8
  // src/utilities/process-handler.ts
9
9
  var exitWithError = (config) => {
10
- _chunkDZS54O6Ncjs.writeFatal.call(void 0, "Exiting script with an error status...", config);
10
+ _chunkAZJQFL6Wcjs.writeFatal.call(void 0, "Exiting script with an error status...", config);
11
11
  process.exit(1);
12
12
  };
13
13
  var exitWithSuccess = (config) => {
14
- _chunkDZS54O6Ncjs.writeSuccess.call(void 0, "Script completed successfully. Exiting...", config);
14
+ _chunkAZJQFL6Wcjs.writeSuccess.call(void 0, "Script completed successfully. Exiting...", config);
15
15
  process.exit(0);
16
16
  };
17
17
  var handleProcess = (config) => {
18
- _chunkDZS54O6Ncjs.writeTrace.call(void 0,
18
+ _chunkAZJQFL6Wcjs.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
- _chunkDZS54O6Ncjs.writeError.call(void 0,
23
+ _chunkAZJQFL6Wcjs.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
- _chunkDZS54O6Ncjs.writeError.call(void 0,
30
+ _chunkAZJQFL6Wcjs.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
- _chunkDZS54O6Ncjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
38
+ _chunkAZJQFL6Wcjs.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
- _chunkDZS54O6Ncjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
42
+ _chunkAZJQFL6Wcjs.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
- _chunkDZS54O6Ncjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
46
+ _chunkAZJQFL6Wcjs.writeError.call(void 0, `The program terminated with signal code: ${signal}`, config);
47
47
  exitWithError(config);
48
48
  });
49
49
  };
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getConfigFile
3
- } from "./chunk-ORVHSCSN.js";
3
+ } from "./chunk-FXQGOFJI.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-TOMKPXJE.js";
15
+ } from "./chunk-4UFIHIMZ.js";
16
16
  import {
17
17
  setConfigEnv
18
18
  } from "./chunk-SDSQ2HHF.js";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  writeError
3
- } from "./chunk-TOMKPXJE.js";
3
+ } from "./chunk-4UFIHIMZ.js";
4
4
 
5
5
  // src/utilities/toml.ts
6
6
  import TOML from "@ltd/j-toml";
@@ -1,19 +1,19 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkPAQH5U2Fcjs = require('../chunk-PAQH5U2F.cjs');
4
+ var _chunkDFWIRJGHcjs = require('../chunk-DFWIRJGH.cjs');
5
5
  require('../chunk-3COHMHPU.cjs');
6
- require('../chunk-6IBSNO2S.cjs');
6
+ require('../chunk-TW273ZN4.cjs');
7
7
  require('../chunk-6Y623TCS.cjs');
8
- require('../chunk-HUQ5Y2QK.cjs');
8
+ require('../chunk-R5BZDTQW.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-S22A75II.cjs');
16
- require('../chunk-DZS54O6N.cjs');
15
+ require('../chunk-44SHQAD4.cjs');
16
+ require('../chunk-AZJQFL6W.cjs');
17
17
  require('../chunk-L4YHJZ6Q.cjs');
18
18
  require('../chunk-LOY6ICHZ.cjs');
19
19
  require('../chunk-EC2KPWRG.cjs');
@@ -25,4 +25,4 @@ require('../chunk-7QBTVNMR.cjs');
25
25
 
26
26
 
27
27
 
28
- exports.getConfigFile = _chunkPAQH5U2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkPAQH5U2Fcjs.getConfigFileByName;
28
+ exports.getConfigFile = _chunkDFWIRJGHcjs.getConfigFile; exports.getConfigFileByName = _chunkDFWIRJGHcjs.getConfigFileByName;
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  getConfigFile,
3
3
  getConfigFileByName
4
- } from "../chunk-ORVHSCSN.js";
4
+ } from "../chunk-FXQGOFJI.js";
5
5
  import "../chunk-UKGRDKIH.js";
6
- import "../chunk-PN7H7GUE.js";
6
+ import "../chunk-MOXINQRL.js";
7
7
  import "../chunk-EENQN6N2.js";
8
- import "../chunk-KLUNEHDC.js";
8
+ import "../chunk-VEYONVTU.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-7KE7OYDW.js";
16
- import "../chunk-TOMKPXJE.js";
15
+ import "../chunk-5NAMOQCY.js";
16
+ import "../chunk-4UFIHIMZ.js";
17
17
  import "../chunk-5DQF4GNF.js";
18
18
  import "../chunk-HVVJHTFS.js";
19
19
  import "../chunk-ZFNAUMQS.js";
@@ -2,19 +2,19 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkPAQH5U2Fcjs = require('../chunk-PAQH5U2F.cjs');
5
+ var _chunkDFWIRJGHcjs = require('../chunk-DFWIRJGH.cjs');
6
6
  require('../chunk-3COHMHPU.cjs');
7
- require('../chunk-6IBSNO2S.cjs');
7
+ require('../chunk-TW273ZN4.cjs');
8
8
  require('../chunk-6Y623TCS.cjs');
9
- require('../chunk-HUQ5Y2QK.cjs');
9
+ require('../chunk-R5BZDTQW.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-S22A75II.cjs');
17
- require('../chunk-DZS54O6N.cjs');
16
+ require('../chunk-44SHQAD4.cjs');
17
+ require('../chunk-AZJQFL6W.cjs');
18
18
  require('../chunk-L4YHJZ6Q.cjs');
19
19
  require('../chunk-LOY6ICHZ.cjs');
20
20
  require('../chunk-EC2KPWRG.cjs');
@@ -26,4 +26,4 @@ require('../chunk-7QBTVNMR.cjs');
26
26
 
27
27
 
28
28
 
29
- exports.getConfigFile = _chunkPAQH5U2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkPAQH5U2Fcjs.getConfigFileByName;
29
+ exports.getConfigFile = _chunkDFWIRJGHcjs.getConfigFile; exports.getConfigFileByName = _chunkDFWIRJGHcjs.getConfigFileByName;
@@ -2,19 +2,19 @@ import "../chunk-2AVLCXLT.js";
2
2
  import {
3
3
  getConfigFile,
4
4
  getConfigFileByName
5
- } from "../chunk-ORVHSCSN.js";
5
+ } from "../chunk-FXQGOFJI.js";
6
6
  import "../chunk-UKGRDKIH.js";
7
- import "../chunk-PN7H7GUE.js";
7
+ import "../chunk-MOXINQRL.js";
8
8
  import "../chunk-EENQN6N2.js";
9
- import "../chunk-KLUNEHDC.js";
9
+ import "../chunk-VEYONVTU.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-7KE7OYDW.js";
17
- import "../chunk-TOMKPXJE.js";
16
+ import "../chunk-5NAMOQCY.js";
17
+ import "../chunk-4UFIHIMZ.js";
18
18
  import "../chunk-5DQF4GNF.js";
19
19
  import "../chunk-HVVJHTFS.js";
20
20
  import "../chunk-ZFNAUMQS.js";
@@ -3,20 +3,20 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkEEPODKNEcjs = require('./chunk-EEPODKNE.cjs');
7
- require('./chunk-PAQH5U2F.cjs');
6
+ var _chunkQXMSQMVNcjs = require('./chunk-QXMSQMVN.cjs');
7
+ require('./chunk-DFWIRJGH.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
- require('./chunk-6IBSNO2S.cjs');
9
+ require('./chunk-TW273ZN4.cjs');
10
10
  require('./chunk-6Y623TCS.cjs');
11
- require('./chunk-HUQ5Y2QK.cjs');
11
+ require('./chunk-R5BZDTQW.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-S22A75II.cjs');
19
- require('./chunk-DZS54O6N.cjs');
18
+ require('./chunk-44SHQAD4.cjs');
19
+ require('./chunk-AZJQFL6W.cjs');
20
20
  require('./chunk-L4YHJZ6Q.cjs');
21
21
  require('./chunk-LOY6ICHZ.cjs');
22
22
  require('./chunk-EC2KPWRG.cjs');
@@ -32,4 +32,4 @@ require('./chunk-7QBTVNMR.cjs');
32
32
 
33
33
 
34
34
 
35
- exports.createConfigExtension = _chunkEEPODKNEcjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkEEPODKNEcjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkEEPODKNEcjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkEEPODKNEcjs.tryLoadStormWorkspaceConfig;
35
+ exports.createConfigExtension = _chunkQXMSQMVNcjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkQXMSQMVNcjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkQXMSQMVNcjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkQXMSQMVNcjs.tryLoadStormWorkspaceConfig;
@@ -3,20 +3,20 @@ import {
3
3
  createStormWorkspaceConfig,
4
4
  loadStormWorkspaceConfig,
5
5
  tryLoadStormWorkspaceConfig
6
- } from "./chunk-KVDT6KNS.js";
7
- import "./chunk-ORVHSCSN.js";
6
+ } from "./chunk-UWI3QVYJ.js";
7
+ import "./chunk-FXQGOFJI.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
- import "./chunk-PN7H7GUE.js";
9
+ import "./chunk-MOXINQRL.js";
10
10
  import "./chunk-EENQN6N2.js";
11
- import "./chunk-KLUNEHDC.js";
11
+ import "./chunk-VEYONVTU.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-7KE7OYDW.js";
19
- import "./chunk-TOMKPXJE.js";
18
+ import "./chunk-5NAMOQCY.js";
19
+ import "./chunk-4UFIHIMZ.js";
20
20
  import "./chunk-5DQF4GNF.js";
21
21
  import "./chunk-HVVJHTFS.js";
22
22
  import "./chunk-ZFNAUMQS.js";
@@ -2,21 +2,21 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkKOSKDPTMcjs = require('./chunk-KOSKDPTM.cjs');
6
- require('./chunk-EEPODKNE.cjs');
7
- require('./chunk-PAQH5U2F.cjs');
5
+ var _chunkKRVACLYZcjs = require('./chunk-KRVACLYZ.cjs');
6
+ require('./chunk-QXMSQMVN.cjs');
7
+ require('./chunk-DFWIRJGH.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
- require('./chunk-6IBSNO2S.cjs');
9
+ require('./chunk-TW273ZN4.cjs');
10
10
  require('./chunk-6Y623TCS.cjs');
11
- require('./chunk-HUQ5Y2QK.cjs');
11
+ require('./chunk-R5BZDTQW.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-S22A75II.cjs');
19
- require('./chunk-DZS54O6N.cjs');
18
+ require('./chunk-44SHQAD4.cjs');
19
+ require('./chunk-AZJQFL6W.cjs');
20
20
  require('./chunk-L4YHJZ6Q.cjs');
21
21
  require('./chunk-LOY6ICHZ.cjs');
22
22
  require('./chunk-EC2KPWRG.cjs');
@@ -31,4 +31,4 @@ require('./chunk-7QBTVNMR.cjs');
31
31
 
32
32
 
33
33
 
34
- exports.getConfig = _chunkKOSKDPTMcjs.getConfig; exports.getWorkspaceConfig = _chunkKOSKDPTMcjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkKOSKDPTMcjs.tryGetWorkspaceConfig;
34
+ exports.getConfig = _chunkKRVACLYZcjs.getConfig; exports.getWorkspaceConfig = _chunkKRVACLYZcjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkKRVACLYZcjs.tryGetWorkspaceConfig;
@@ -2,21 +2,21 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-CZGO7WY3.js";
6
- import "./chunk-KVDT6KNS.js";
7
- import "./chunk-ORVHSCSN.js";
5
+ } from "./chunk-TIH4RSTL.js";
6
+ import "./chunk-UWI3QVYJ.js";
7
+ import "./chunk-FXQGOFJI.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
- import "./chunk-PN7H7GUE.js";
9
+ import "./chunk-MOXINQRL.js";
10
10
  import "./chunk-EENQN6N2.js";
11
- import "./chunk-KLUNEHDC.js";
11
+ import "./chunk-VEYONVTU.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-7KE7OYDW.js";
19
- import "./chunk-TOMKPXJE.js";
18
+ import "./chunk-5NAMOQCY.js";
19
+ import "./chunk-4UFIHIMZ.js";
20
20
  import "./chunk-5DQF4GNF.js";
21
21
  import "./chunk-HVVJHTFS.js";
22
22
  import "./chunk-ZFNAUMQS.js";
package/dist/index.cjs CHANGED
@@ -2,24 +2,24 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkKOSKDPTMcjs = require('./chunk-KOSKDPTM.cjs');
5
+ var _chunkKRVACLYZcjs = require('./chunk-KRVACLYZ.cjs');
6
6
 
7
7
 
8
8
 
9
9
 
10
10
 
11
- var _chunkEEPODKNEcjs = require('./chunk-EEPODKNE.cjs');
11
+ var _chunkQXMSQMVNcjs = require('./chunk-QXMSQMVN.cjs');
12
12
  require('./chunk-IWD6YQKX.cjs');
13
13
 
14
14
 
15
15
 
16
- var _chunkPAQH5U2Fcjs = require('./chunk-PAQH5U2F.cjs');
16
+ var _chunkDFWIRJGHcjs = require('./chunk-DFWIRJGH.cjs');
17
17
  require('./chunk-3COHMHPU.cjs');
18
18
 
19
19
 
20
20
 
21
21
 
22
- var _chunk6IBSNO2Scjs = require('./chunk-6IBSNO2S.cjs');
22
+ var _chunkTW273ZN4cjs = require('./chunk-TW273ZN4.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 _chunkHUQ5Y2QKcjs = require('./chunk-HUQ5Y2QK.cjs');
34
+ var _chunkR5BZDTQWcjs = require('./chunk-R5BZDTQW.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 _chunkS22A75IIcjs = require('./chunk-S22A75II.cjs');
57
+ var _chunk44SHQAD4cjs = require('./chunk-44SHQAD4.cjs');
58
58
 
59
59
 
60
60
 
@@ -69,7 +69,7 @@ var _chunkS22A75IIcjs = require('./chunk-S22A75II.cjs');
69
69
 
70
70
 
71
71
 
72
- var _chunkDZS54O6Ncjs = require('./chunk-DZS54O6N.cjs');
72
+ var _chunkAZJQFL6Wcjs = require('./chunk-AZJQFL6W.cjs');
73
73
 
74
74
 
75
75
 
@@ -198,4 +198,4 @@ var _chunk7QBTVNMRcjs = require('./chunk-7QBTVNMR.cjs');
198
198
 
199
199
 
200
200
 
201
- exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.LogLevel = _chunk7QBTVNMRcjs.LogLevel; exports.LogLevelLabel = _chunk7QBTVNMRcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.brandIcon = _chunkDZS54O6Ncjs.brandIcon; exports.correctPaths = _chunkBDATZ3UBcjs.correctPaths; exports.createConfigExtension = _chunkEEPODKNEcjs.createConfigExtension; exports.createLogger = _chunkS22A75IIcjs.createLogger; exports.createStormWorkspaceConfig = _chunkEEPODKNEcjs.createStormWorkspaceConfig; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunk6IBSNO2Scjs.exitWithError; exports.exitWithSuccess = _chunk6IBSNO2Scjs.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 = _chunkDZS54O6Ncjs.formatLogMessage; exports.formatTimestamp = _chunkWQJYIPSLcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getColor = _chunkL4YHJZ6Qcjs.getColor; exports.getColors = _chunkL4YHJZ6Qcjs.getColors; exports.getConfig = _chunkKOSKDPTMcjs.getConfig; exports.getConfigEnv = _chunkNHILCONIcjs.getConfigEnv; exports.getConfigFile = _chunkPAQH5U2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkPAQH5U2Fcjs.getConfigFileByName; exports.getExtensionEnv = _chunkNHILCONIcjs.getExtensionEnv; exports.getGradient = _chunkL4YHJZ6Qcjs.getGradient; exports.getLogFn = _chunkDZS54O6Ncjs.getLogFn; exports.getLogLevel = _chunkJWLDCEBZcjs.getLogLevel; exports.getLogLevelLabel = _chunkJWLDCEBZcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkDZS54O6Ncjs.getStopwatch; exports.getWorkspaceConfig = _chunkKOSKDPTMcjs.getWorkspaceConfig; exports.handleProcess = _chunk6IBSNO2Scjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunkJWLDCEBZcjs.isVerbose; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkEEPODKNEcjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkHUQ5Y2QKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkHUQ5Y2QKcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkHUQ5Y2QKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkHUQ5Y2QKcjs.parseCargoTomlWithTree; exports.relative = _chunkBDATZ3UBcjs.relative; exports.removeExtension = _chunk2WBD2G3Ecjs.removeExtension; exports.resolve = _chunkBDATZ3UBcjs.resolve; exports.run = _chunk6Y623TCScjs.run; exports.runAsync = _chunk6Y623TCScjs.runAsync; exports.sep = _chunkBDATZ3UBcjs.sep; exports.setConfigEnv = _chunkB2CQPVVLcjs.setConfigEnv; exports.setExtensionEnv = _chunkB2CQPVVLcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkHUQ5Y2QKcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkKOSKDPTMcjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkEEPODKNEcjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkDZS54O6Ncjs.writeDebug; exports.writeError = _chunkDZS54O6Ncjs.writeError; exports.writeFatal = _chunkDZS54O6Ncjs.writeFatal; exports.writeInfo = _chunkDZS54O6Ncjs.writeInfo; exports.writePerformance = _chunkDZS54O6Ncjs.writePerformance; exports.writeSuccess = _chunkDZS54O6Ncjs.writeSuccess; exports.writeSystem = _chunkDZS54O6Ncjs.writeSystem; exports.writeTrace = _chunkDZS54O6Ncjs.writeTrace; exports.writeWarning = _chunkDZS54O6Ncjs.writeWarning;
201
+ exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.LogLevel = _chunk7QBTVNMRcjs.LogLevel; exports.LogLevelLabel = _chunk7QBTVNMRcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.brandIcon = _chunkAZJQFL6Wcjs.brandIcon; exports.correctPaths = _chunkBDATZ3UBcjs.correctPaths; exports.createConfigExtension = _chunkQXMSQMVNcjs.createConfigExtension; exports.createLogger = _chunk44SHQAD4cjs.createLogger; exports.createStormWorkspaceConfig = _chunkQXMSQMVNcjs.createStormWorkspaceConfig; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunkTW273ZN4cjs.exitWithError; exports.exitWithSuccess = _chunkTW273ZN4cjs.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 = _chunkAZJQFL6Wcjs.formatLogMessage; exports.formatTimestamp = _chunkWQJYIPSLcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getColor = _chunkL4YHJZ6Qcjs.getColor; exports.getColors = _chunkL4YHJZ6Qcjs.getColors; exports.getConfig = _chunkKRVACLYZcjs.getConfig; exports.getConfigEnv = _chunkNHILCONIcjs.getConfigEnv; exports.getConfigFile = _chunkDFWIRJGHcjs.getConfigFile; exports.getConfigFileByName = _chunkDFWIRJGHcjs.getConfigFileByName; exports.getExtensionEnv = _chunkNHILCONIcjs.getExtensionEnv; exports.getGradient = _chunkL4YHJZ6Qcjs.getGradient; exports.getLogFn = _chunkAZJQFL6Wcjs.getLogFn; exports.getLogLevel = _chunkJWLDCEBZcjs.getLogLevel; exports.getLogLevelLabel = _chunkJWLDCEBZcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkAZJQFL6Wcjs.getStopwatch; exports.getWorkspaceConfig = _chunkKRVACLYZcjs.getWorkspaceConfig; exports.handleProcess = _chunkTW273ZN4cjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunkJWLDCEBZcjs.isVerbose; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkQXMSQMVNcjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkR5BZDTQWcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkR5BZDTQWcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkR5BZDTQWcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkR5BZDTQWcjs.parseCargoTomlWithTree; exports.relative = _chunkBDATZ3UBcjs.relative; exports.removeExtension = _chunk2WBD2G3Ecjs.removeExtension; exports.resolve = _chunkBDATZ3UBcjs.resolve; exports.run = _chunk6Y623TCScjs.run; exports.runAsync = _chunk6Y623TCScjs.runAsync; exports.sep = _chunkBDATZ3UBcjs.sep; exports.setConfigEnv = _chunkB2CQPVVLcjs.setConfigEnv; exports.setExtensionEnv = _chunkB2CQPVVLcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkR5BZDTQWcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkKRVACLYZcjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkQXMSQMVNcjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkAZJQFL6Wcjs.writeDebug; exports.writeError = _chunkAZJQFL6Wcjs.writeError; exports.writeFatal = _chunkAZJQFL6Wcjs.writeFatal; exports.writeInfo = _chunkAZJQFL6Wcjs.writeInfo; exports.writePerformance = _chunkAZJQFL6Wcjs.writePerformance; exports.writeSuccess = _chunkAZJQFL6Wcjs.writeSuccess; exports.writeSystem = _chunkAZJQFL6Wcjs.writeSystem; exports.writeTrace = _chunkAZJQFL6Wcjs.writeTrace; exports.writeWarning = _chunkAZJQFL6Wcjs.writeWarning;
package/dist/index.js CHANGED
@@ -2,24 +2,24 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-CZGO7WY3.js";
5
+ } from "./chunk-TIH4RSTL.js";
6
6
  import {
7
7
  createConfigExtension,
8
8
  createStormWorkspaceConfig,
9
9
  loadStormWorkspaceConfig,
10
10
  tryLoadStormWorkspaceConfig
11
- } from "./chunk-KVDT6KNS.js";
11
+ } from "./chunk-UWI3QVYJ.js";
12
12
  import "./chunk-2AVLCXLT.js";
13
13
  import {
14
14
  getConfigFile,
15
15
  getConfigFileByName
16
- } from "./chunk-ORVHSCSN.js";
16
+ } from "./chunk-FXQGOFJI.js";
17
17
  import "./chunk-UKGRDKIH.js";
18
18
  import {
19
19
  exitWithError,
20
20
  exitWithSuccess,
21
21
  handleProcess
22
- } from "./chunk-PN7H7GUE.js";
22
+ } from "./chunk-MOXINQRL.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-KLUNEHDC.js";
34
+ } from "./chunk-VEYONVTU.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-7KE7OYDW.js";
57
+ } from "./chunk-5NAMOQCY.js";
58
58
  import {
59
59
  brandIcon,
60
60
  formatLogMessage,
@@ -69,7 +69,7 @@ import {
69
69
  writeSystem,
70
70
  writeTrace,
71
71
  writeWarning
72
- } from "./chunk-TOMKPXJE.js";
72
+ } from "./chunk-4UFIHIMZ.js";
73
73
  import {
74
74
  DEFAULT_COLOR_CONFIG,
75
75
  getColor,
@@ -12,7 +12,7 @@
12
12
 
13
13
 
14
14
 
15
- var _chunkDZS54O6Ncjs = require('../chunk-DZS54O6N.cjs');
15
+ var _chunkAZJQFL6Wcjs = require('../chunk-AZJQFL6W.cjs');
16
16
  require('../chunk-L4YHJZ6Q.cjs');
17
17
  require('../chunk-LOY6ICHZ.cjs');
18
18
  require('../chunk-EC2KPWRG.cjs');
@@ -34,4 +34,4 @@ require('../chunk-7QBTVNMR.cjs');
34
34
 
35
35
 
36
36
 
37
- exports.brandIcon = _chunkDZS54O6Ncjs.brandIcon; exports.formatLogMessage = _chunkDZS54O6Ncjs.formatLogMessage; exports.getLogFn = _chunkDZS54O6Ncjs.getLogFn; exports.getStopwatch = _chunkDZS54O6Ncjs.getStopwatch; exports.writeDebug = _chunkDZS54O6Ncjs.writeDebug; exports.writeError = _chunkDZS54O6Ncjs.writeError; exports.writeFatal = _chunkDZS54O6Ncjs.writeFatal; exports.writeInfo = _chunkDZS54O6Ncjs.writeInfo; exports.writePerformance = _chunkDZS54O6Ncjs.writePerformance; exports.writeSuccess = _chunkDZS54O6Ncjs.writeSuccess; exports.writeSystem = _chunkDZS54O6Ncjs.writeSystem; exports.writeTrace = _chunkDZS54O6Ncjs.writeTrace; exports.writeWarning = _chunkDZS54O6Ncjs.writeWarning;
37
+ exports.brandIcon = _chunkAZJQFL6Wcjs.brandIcon; exports.formatLogMessage = _chunkAZJQFL6Wcjs.formatLogMessage; exports.getLogFn = _chunkAZJQFL6Wcjs.getLogFn; exports.getStopwatch = _chunkAZJQFL6Wcjs.getStopwatch; exports.writeDebug = _chunkAZJQFL6Wcjs.writeDebug; exports.writeError = _chunkAZJQFL6Wcjs.writeError; exports.writeFatal = _chunkAZJQFL6Wcjs.writeFatal; exports.writeInfo = _chunkAZJQFL6Wcjs.writeInfo; exports.writePerformance = _chunkAZJQFL6Wcjs.writePerformance; exports.writeSuccess = _chunkAZJQFL6Wcjs.writeSuccess; exports.writeSystem = _chunkAZJQFL6Wcjs.writeSystem; exports.writeTrace = _chunkAZJQFL6Wcjs.writeTrace; exports.writeWarning = _chunkAZJQFL6Wcjs.writeWarning;
@@ -101,7 +101,16 @@ declare const getStopwatch: (name: string) => () => void;
101
101
  type FormatLogMessageOptions = {
102
102
  prefix?: string;
103
103
  skip?: string[];
104
+ sort?: boolean;
104
105
  };
106
+ /**
107
+ * Format a log message for output to the console, handling different types of messages (e.g. strings, objects, arrays) and applying formatting options such as prefixing and skipping certain keys in objects.
108
+ *
109
+ * @param message - The message to format
110
+ * @param options - Formatting options
111
+ * @param depth - The current depth of recursion
112
+ * @returns The formatted log message
113
+ */
105
114
  declare const formatLogMessage: (message?: any, options?: FormatLogMessageOptions, depth?: number) => string;
106
115
  /**
107
116
  * Get the brand icon for the console
@@ -101,7 +101,16 @@ declare const getStopwatch: (name: string) => () => void;
101
101
  type FormatLogMessageOptions = {
102
102
  prefix?: string;
103
103
  skip?: string[];
104
+ sort?: boolean;
104
105
  };
106
+ /**
107
+ * Format a log message for output to the console, handling different types of messages (e.g. strings, objects, arrays) and applying formatting options such as prefixing and skipping certain keys in objects.
108
+ *
109
+ * @param message - The message to format
110
+ * @param options - Formatting options
111
+ * @param depth - The current depth of recursion
112
+ * @returns The formatted log message
113
+ */
105
114
  declare const formatLogMessage: (message?: any, options?: FormatLogMessageOptions, depth?: number) => string;
106
115
  /**
107
116
  * Get the brand icon for the console
@@ -12,7 +12,7 @@ import {
12
12
  writeSystem,
13
13
  writeTrace,
14
14
  writeWarning
15
- } from "../chunk-TOMKPXJE.js";
15
+ } from "../chunk-4UFIHIMZ.js";
16
16
  import "../chunk-5DQF4GNF.js";
17
17
  import "../chunk-HVVJHTFS.js";
18
18
  import "../chunk-ZFNAUMQS.js";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkS22A75IIcjs = require('../chunk-S22A75II.cjs');
4
- require('../chunk-DZS54O6N.cjs');
3
+ var _chunk44SHQAD4cjs = require('../chunk-44SHQAD4.cjs');
4
+ require('../chunk-AZJQFL6W.cjs');
5
5
  require('../chunk-L4YHJZ6Q.cjs');
6
6
  require('../chunk-LOY6ICHZ.cjs');
7
7
  require('../chunk-EC2KPWRG.cjs');
@@ -11,4 +11,4 @@ require('../chunk-JWLDCEBZ.cjs');
11
11
  require('../chunk-7QBTVNMR.cjs');
12
12
 
13
13
 
14
- exports.createLogger = _chunkS22A75IIcjs.createLogger;
14
+ exports.createLogger = _chunk44SHQAD4cjs.createLogger;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createLogger
3
- } from "../chunk-7KE7OYDW.js";
4
- import "../chunk-TOMKPXJE.js";
3
+ } from "../chunk-5NAMOQCY.js";
4
+ import "../chunk-4UFIHIMZ.js";
5
5
  import "../chunk-5DQF4GNF.js";
6
6
  import "../chunk-HVVJHTFS.js";
7
7
  import "../chunk-ZFNAUMQS.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 _chunkS22A75IIcjs = require('../chunk-S22A75II.cjs');
4
+ var _chunk44SHQAD4cjs = require('../chunk-44SHQAD4.cjs');
5
5
 
6
6
 
7
7
 
@@ -16,7 +16,7 @@ var _chunkS22A75IIcjs = require('../chunk-S22A75II.cjs');
16
16
 
17
17
 
18
18
 
19
- var _chunkDZS54O6Ncjs = require('../chunk-DZS54O6N.cjs');
19
+ var _chunkAZJQFL6Wcjs = require('../chunk-AZJQFL6W.cjs');
20
20
  require('../chunk-L4YHJZ6Q.cjs');
21
21
 
22
22
 
@@ -58,4 +58,4 @@ require('../chunk-7QBTVNMR.cjs');
58
58
 
59
59
 
60
60
 
61
- exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.brandIcon = _chunkDZS54O6Ncjs.brandIcon; exports.createLogger = _chunkS22A75IIcjs.createLogger; exports.formatLogMessage = _chunkDZS54O6Ncjs.formatLogMessage; exports.formatTimestamp = _chunkWQJYIPSLcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getLogFn = _chunkDZS54O6Ncjs.getLogFn; exports.getLogLevel = _chunkJWLDCEBZcjs.getLogLevel; exports.getLogLevelLabel = _chunkJWLDCEBZcjs.getLogLevelLabel; exports.getStopwatch = _chunkDZS54O6Ncjs.getStopwatch; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunkJWLDCEBZcjs.isVerbose; exports.writeDebug = _chunkDZS54O6Ncjs.writeDebug; exports.writeError = _chunkDZS54O6Ncjs.writeError; exports.writeFatal = _chunkDZS54O6Ncjs.writeFatal; exports.writeInfo = _chunkDZS54O6Ncjs.writeInfo; exports.writePerformance = _chunkDZS54O6Ncjs.writePerformance; exports.writeSuccess = _chunkDZS54O6Ncjs.writeSuccess; exports.writeSystem = _chunkDZS54O6Ncjs.writeSystem; exports.writeTrace = _chunkDZS54O6Ncjs.writeTrace; exports.writeWarning = _chunkDZS54O6Ncjs.writeWarning;
61
+ exports.CONSOLE_ICONS = _chunkEC2KPWRGcjs.CONSOLE_ICONS; exports.brandIcon = _chunkAZJQFL6Wcjs.brandIcon; exports.createLogger = _chunk44SHQAD4cjs.createLogger; exports.formatLogMessage = _chunkAZJQFL6Wcjs.formatLogMessage; exports.formatTimestamp = _chunkWQJYIPSLcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getLogFn = _chunkAZJQFL6Wcjs.getLogFn; exports.getLogLevel = _chunkJWLDCEBZcjs.getLogLevel; exports.getLogLevelLabel = _chunkJWLDCEBZcjs.getLogLevelLabel; exports.getStopwatch = _chunkAZJQFL6Wcjs.getStopwatch; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunkJWLDCEBZcjs.isVerbose; exports.writeDebug = _chunkAZJQFL6Wcjs.writeDebug; exports.writeError = _chunkAZJQFL6Wcjs.writeError; exports.writeFatal = _chunkAZJQFL6Wcjs.writeFatal; exports.writeInfo = _chunkAZJQFL6Wcjs.writeInfo; exports.writePerformance = _chunkAZJQFL6Wcjs.writePerformance; exports.writeSuccess = _chunkAZJQFL6Wcjs.writeSuccess; exports.writeSystem = _chunkAZJQFL6Wcjs.writeSystem; exports.writeTrace = _chunkAZJQFL6Wcjs.writeTrace; exports.writeWarning = _chunkAZJQFL6Wcjs.writeWarning;
@@ -1,7 +1,7 @@
1
1
  import "../chunk-RRKB32OH.js";
2
2
  import {
3
3
  createLogger
4
- } from "../chunk-7KE7OYDW.js";
4
+ } from "../chunk-5NAMOQCY.js";
5
5
  import {
6
6
  brandIcon,
7
7
  formatLogMessage,
@@ -16,7 +16,7 @@ import {
16
16
  writeSystem,
17
17
  writeTrace,
18
18
  writeWarning
19
- } from "../chunk-TOMKPXJE.js";
19
+ } from "../chunk-4UFIHIMZ.js";
20
20
  import "../chunk-5DQF4GNF.js";
21
21
  import {
22
22
  getChalk
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- var _chunk6IBSNO2Scjs = require('../chunk-6IBSNO2S.cjs');
6
+ var _chunkTW273ZN4cjs = require('../chunk-TW273ZN4.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 _chunkHUQ5Y2QKcjs = require('../chunk-HUQ5Y2QK.cjs');
18
+ var _chunkR5BZDTQWcjs = require('../chunk-R5BZDTQW.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-S22A75II.cjs');
40
- require('../chunk-DZS54O6N.cjs');
39
+ require('../chunk-44SHQAD4.cjs');
40
+ require('../chunk-AZJQFL6W.cjs');
41
41
 
42
42
 
43
43
 
@@ -106,4 +106,4 @@ require('../chunk-7QBTVNMR.cjs');
106
106
 
107
107
 
108
108
 
109
- exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.correctPaths = _chunkBDATZ3UBcjs.correctPaths; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunk6IBSNO2Scjs.exitWithError; exports.exitWithSuccess = _chunk6IBSNO2Scjs.exitWithSuccess; exports.extname = _chunkBDATZ3UBcjs.extname; exports.findFileName = _chunk2WBD2G3Ecjs.findFileName; exports.findFilePath = _chunk2WBD2G3Ecjs.findFilePath; exports.findWorkspaceRoot = _chunk3CNCDDWZcjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunk3CNCDDWZcjs.findWorkspaceRootSafe; exports.format = _chunkBDATZ3UBcjs.format; exports.getColor = _chunkL4YHJZ6Qcjs.getColor; exports.getColors = _chunkL4YHJZ6Qcjs.getColors; exports.getGradient = _chunkL4YHJZ6Qcjs.getGradient; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.handleProcess = _chunk6IBSNO2Scjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.modifyCargoNestedTable = _chunkHUQ5Y2QKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkHUQ5Y2QKcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkHUQ5Y2QKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkHUQ5Y2QKcjs.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 = _chunkHUQ5Y2QKcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath;
109
+ exports.DEFAULT_COLOR_CONFIG = _chunkL4YHJZ6Qcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk6Y623TCScjs.LARGE_BUFFER; exports.applyDefaultConfig = _chunkCFXT4ZAWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkEMO3BY53cjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkEMO3BY53cjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkEMO3BY53cjs.applyWorkspaceTokens; exports.basename = _chunkBDATZ3UBcjs.basename; exports.correctPaths = _chunkBDATZ3UBcjs.correctPaths; exports.dirname = _chunkBDATZ3UBcjs.dirname; exports.exitWithError = _chunkTW273ZN4cjs.exitWithError; exports.exitWithSuccess = _chunkTW273ZN4cjs.exitWithSuccess; exports.extname = _chunkBDATZ3UBcjs.extname; exports.findFileName = _chunk2WBD2G3Ecjs.findFileName; exports.findFilePath = _chunk2WBD2G3Ecjs.findFilePath; exports.findWorkspaceRoot = _chunk3CNCDDWZcjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunk3CNCDDWZcjs.findWorkspaceRootSafe; exports.format = _chunkBDATZ3UBcjs.format; exports.getColor = _chunkL4YHJZ6Qcjs.getColor; exports.getColors = _chunkL4YHJZ6Qcjs.getColors; exports.getGradient = _chunkL4YHJZ6Qcjs.getGradient; exports.getPackageJsonConfig = _chunkCFXT4ZAWcjs.getPackageJsonConfig; exports.handleProcess = _chunkTW273ZN4cjs.handleProcess; exports.isAbsolute = _chunkBDATZ3UBcjs.isAbsolute; exports.joinPaths = _chunkBDATZ3UBcjs.joinPaths; exports.modifyCargoNestedTable = _chunkR5BZDTQWcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkR5BZDTQWcjs.modifyCargoTable; exports.normalizeString = _chunkBDATZ3UBcjs.normalizeString; exports.normalizeWindowsPath = _chunkBDATZ3UBcjs.normalizeWindowsPath; exports.parse = _chunkBDATZ3UBcjs.parse; exports.parseCargoToml = _chunkR5BZDTQWcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkR5BZDTQWcjs.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 = _chunkR5BZDTQWcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkBDATZ3UBcjs.toNamespacedPath;
@@ -3,7 +3,7 @@ import {
3
3
  exitWithError,
4
4
  exitWithSuccess,
5
5
  handleProcess
6
- } from "../chunk-PN7H7GUE.js";
6
+ } from "../chunk-MOXINQRL.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-KLUNEHDC.js";
18
+ } from "../chunk-VEYONVTU.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-7KE7OYDW.js";
40
- import "../chunk-TOMKPXJE.js";
39
+ import "../chunk-5NAMOQCY.js";
40
+ import "../chunk-4UFIHIMZ.js";
41
41
  import {
42
42
  DEFAULT_COLOR_CONFIG,
43
43
  getColor,
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
 
5
- var _chunk6IBSNO2Scjs = require('../chunk-6IBSNO2S.cjs');
6
- require('../chunk-DZS54O6N.cjs');
5
+ var _chunkTW273ZN4cjs = require('../chunk-TW273ZN4.cjs');
6
+ require('../chunk-AZJQFL6W.cjs');
7
7
  require('../chunk-L4YHJZ6Q.cjs');
8
8
  require('../chunk-LOY6ICHZ.cjs');
9
9
  require('../chunk-EC2KPWRG.cjs');
@@ -15,4 +15,4 @@ require('../chunk-7QBTVNMR.cjs');
15
15
 
16
16
 
17
17
 
18
- exports.exitWithError = _chunk6IBSNO2Scjs.exitWithError; exports.exitWithSuccess = _chunk6IBSNO2Scjs.exitWithSuccess; exports.handleProcess = _chunk6IBSNO2Scjs.handleProcess;
18
+ exports.exitWithError = _chunkTW273ZN4cjs.exitWithError; exports.exitWithSuccess = _chunkTW273ZN4cjs.exitWithSuccess; exports.handleProcess = _chunkTW273ZN4cjs.handleProcess;
@@ -2,8 +2,8 @@ import {
2
2
  exitWithError,
3
3
  exitWithSuccess,
4
4
  handleProcess
5
- } from "../chunk-PN7H7GUE.js";
6
- import "../chunk-TOMKPXJE.js";
5
+ } from "../chunk-MOXINQRL.js";
6
+ import "../chunk-4UFIHIMZ.js";
7
7
  import "../chunk-5DQF4GNF.js";
8
8
  import "../chunk-HVVJHTFS.js";
9
9
  import "../chunk-ZFNAUMQS.js";
@@ -4,10 +4,10 @@
4
4
 
5
5
 
6
6
 
7
- var _chunkHUQ5Y2QKcjs = require('../chunk-HUQ5Y2QK.cjs');
7
+ var _chunkR5BZDTQWcjs = require('../chunk-R5BZDTQW.cjs');
8
8
  require('../chunk-7PV6L7I7.cjs');
9
- require('../chunk-S22A75II.cjs');
10
- require('../chunk-DZS54O6N.cjs');
9
+ require('../chunk-44SHQAD4.cjs');
10
+ require('../chunk-AZJQFL6W.cjs');
11
11
  require('../chunk-L4YHJZ6Q.cjs');
12
12
  require('../chunk-LOY6ICHZ.cjs');
13
13
  require('../chunk-EC2KPWRG.cjs');
@@ -21,4 +21,4 @@ require('../chunk-7QBTVNMR.cjs');
21
21
 
22
22
 
23
23
 
24
- exports.modifyCargoNestedTable = _chunkHUQ5Y2QKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkHUQ5Y2QKcjs.modifyCargoTable; exports.parseCargoToml = _chunkHUQ5Y2QKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkHUQ5Y2QKcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunkHUQ5Y2QKcjs.stringifyCargoToml;
24
+ exports.modifyCargoNestedTable = _chunkR5BZDTQWcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkR5BZDTQWcjs.modifyCargoTable; exports.parseCargoToml = _chunkR5BZDTQWcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkR5BZDTQWcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunkR5BZDTQWcjs.stringifyCargoToml;
@@ -4,10 +4,10 @@ import {
4
4
  parseCargoToml,
5
5
  parseCargoTomlWithTree,
6
6
  stringifyCargoToml
7
- } from "../chunk-KLUNEHDC.js";
7
+ } from "../chunk-VEYONVTU.js";
8
8
  import "../chunk-RRKB32OH.js";
9
- import "../chunk-7KE7OYDW.js";
10
- import "../chunk-TOMKPXJE.js";
9
+ import "../chunk-5NAMOQCY.js";
10
+ import "../chunk-4UFIHIMZ.js";
11
11
  import "../chunk-5DQF4GNF.js";
12
12
  import "../chunk-HVVJHTFS.js";
13
13
  import "../chunk-ZFNAUMQS.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.190.13",
3
+ "version": "1.190.15",
4
4
  "private": false,
5
5
  "description": "A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.",
6
6
  "keywords": [
@@ -212,7 +212,7 @@
212
212
  "files": ["dist/**/*"],
213
213
  "dependencies": {
214
214
  "@ltd/j-toml": "1.38.0",
215
- "@storm-software/config": "^1.137.46",
215
+ "@storm-software/config": "^1.137.47",
216
216
  "c12": "^2.0.4",
217
217
  "chalk": "^4.1.2",
218
218
  "commander": "^12.1.0",
@@ -230,5 +230,5 @@
230
230
  "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" },
231
231
  "peerDependenciesMeta": { "zod": { "optional": false } },
232
232
  "publishConfig": { "access": "public" },
233
- "gitHead": "28ba0e3264c160d982d27b4cb8d1f386d0b833c4"
233
+ "gitHead": "756f2efc9602033fcc0355d7943682581488379b"
234
234
  }