@storm-software/config-tools 1.176.5 → 1.176.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-1.176.3-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.176.5-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/bin/config.cjs CHANGED
@@ -1296,12 +1296,24 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
1296
1296
  }
1297
1297
  }
1298
1298
  const defaultConfig = await getPackageJsonConfig(_workspaceRoot);
1299
- result = applyDefaultConfig(
1300
- await import_schema.stormWorkspaceConfigSchema.parseAsync(
1301
- (0, import_defu2.default)(configEnv, configFile, defaultConfig)
1302
- )
1303
- );
1304
- result.workspaceRoot ??= _workspaceRoot;
1299
+ const configInput = (0, import_defu2.default)(configEnv, configFile, defaultConfig);
1300
+ try {
1301
+ result = applyDefaultConfig(
1302
+ await import_schema.stormWorkspaceConfigSchema.parseAsync(configInput)
1303
+ );
1304
+ result.workspaceRoot ??= _workspaceRoot;
1305
+ } catch (error) {
1306
+ throw new Error(
1307
+ `Failed to parse Storm Workspace configuration${error?.message ? `: ${error.message}` : ""}
1308
+
1309
+ Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${formatLogMessage(
1310
+ configInput
1311
+ )}`,
1312
+ {
1313
+ cause: error
1314
+ }
1315
+ );
1316
+ }
1305
1317
  } else {
1306
1318
  result = _static_cache.data;
1307
1319
  }
package/bin/config.js CHANGED
@@ -1271,12 +1271,24 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
1271
1271
  }
1272
1272
  }
1273
1273
  const defaultConfig = await getPackageJsonConfig(_workspaceRoot);
1274
- result = applyDefaultConfig(
1275
- await stormWorkspaceConfigSchema.parseAsync(
1276
- defu2(configEnv, configFile, defaultConfig)
1277
- )
1278
- );
1279
- result.workspaceRoot ??= _workspaceRoot;
1274
+ const configInput = defu2(configEnv, configFile, defaultConfig);
1275
+ try {
1276
+ result = applyDefaultConfig(
1277
+ await stormWorkspaceConfigSchema.parseAsync(configInput)
1278
+ );
1279
+ result.workspaceRoot ??= _workspaceRoot;
1280
+ } catch (error) {
1281
+ throw new Error(
1282
+ `Failed to parse Storm Workspace configuration${error?.message ? `: ${error.message}` : ""}
1283
+
1284
+ Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${formatLogMessage(
1285
+ configInput
1286
+ )}`,
1287
+ {
1288
+ cause: error
1289
+ }
1290
+ );
1291
+ }
1280
1292
  } else {
1281
1293
  result = _static_cache.data;
1282
1294
  }
@@ -47,12 +47,24 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
47
47
  }
48
48
  }
49
49
  const defaultConfig = await _chunkKH5SONKWcjs.getPackageJsonConfig.call(void 0, _workspaceRoot);
50
- result = _chunkKH5SONKWcjs.applyDefaultConfig.call(void 0,
51
- await _schema.stormWorkspaceConfigSchema.parseAsync(
52
- _defu2.default.call(void 0, configEnv, configFile, defaultConfig)
53
- )
54
- );
55
- result.workspaceRoot ??= _workspaceRoot;
50
+ const configInput = _defu2.default.call(void 0, configEnv, configFile, defaultConfig);
51
+ try {
52
+ result = _chunkKH5SONKWcjs.applyDefaultConfig.call(void 0,
53
+ await _schema.stormWorkspaceConfigSchema.parseAsync(configInput)
54
+ );
55
+ result.workspaceRoot ??= _workspaceRoot;
56
+ } catch (error) {
57
+ throw new Error(
58
+ `Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess', _3 => _3.message]) ? `: ${error.message}` : ""}
59
+
60
+ Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${_chunkRP3PSEDAcjs.formatLogMessage.call(void 0,
61
+ configInput
62
+ )}`,
63
+ {
64
+ cause: error
65
+ }
66
+ );
67
+ }
56
68
  } else {
57
69
  result = _static_cache.data;
58
70
  }
@@ -47,12 +47,24 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
47
47
  }
48
48
  }
49
49
  const defaultConfig = await getPackageJsonConfig(_workspaceRoot);
50
- result = applyDefaultConfig(
51
- await stormWorkspaceConfigSchema.parseAsync(
52
- defu(configEnv, configFile, defaultConfig)
53
- )
54
- );
55
- result.workspaceRoot ??= _workspaceRoot;
50
+ const configInput = defu(configEnv, configFile, defaultConfig);
51
+ try {
52
+ result = applyDefaultConfig(
53
+ await stormWorkspaceConfigSchema.parseAsync(configInput)
54
+ );
55
+ result.workspaceRoot ??= _workspaceRoot;
56
+ } catch (error) {
57
+ throw new Error(
58
+ `Failed to parse Storm Workspace configuration${error?.message ? `: ${error.message}` : ""}
59
+
60
+ Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${formatLogMessage(
61
+ configInput
62
+ )}`,
63
+ {
64
+ cause: error
65
+ }
66
+ );
67
+ }
56
68
  } else {
57
69
  result = _static_cache.data;
58
70
  }
@@ -1,14 +1,14 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkJF4C3F7Acjs = require('./chunk-JF4C3F7A.cjs');
4
+ var _chunkCQTNN7B2cjs = require('./chunk-CQTNN7B2.cjs');
5
5
 
6
6
 
7
7
  var _chunkU436743Ucjs = require('./chunk-U436743U.cjs');
8
8
 
9
9
  // src/get-config.ts
10
10
  var getConfig = (workspaceRoot, skipLogs = false) => {
11
- return _chunkJF4C3F7Acjs.loadStormWorkspaceConfig.call(void 0, workspaceRoot, skipLogs);
11
+ return _chunkCQTNN7B2cjs.loadStormWorkspaceConfig.call(void 0, workspaceRoot, skipLogs);
12
12
  };
13
13
  var getWorkspaceConfig = (skipLogs = true, options = {}) => {
14
14
  let workspaceRoot = options.workspaceRoot;
@@ -23,7 +23,7 @@ var tryGetWorkspaceConfig = async (skipLogs = true, options = {}) => {
23
23
  if (!workspaceRoot) {
24
24
  workspaceRoot = _chunkU436743Ucjs.findWorkspaceRoot.call(void 0, options.cwd);
25
25
  }
26
- return _chunkJF4C3F7Acjs.tryLoadStormWorkspaceConfig.call(void 0,
26
+ return _chunkCQTNN7B2cjs.tryLoadStormWorkspaceConfig.call(void 0,
27
27
  workspaceRoot,
28
28
  skipLogs,
29
29
  options.useDefault
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  loadStormWorkspaceConfig,
3
3
  tryLoadStormWorkspaceConfig
4
- } from "./chunk-DA5LOQSA.js";
4
+ } from "./chunk-QLBQCN4Q.js";
5
5
  import {
6
6
  findWorkspaceRoot
7
7
  } from "./chunk-PTHGOJU6.js";
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkJF4C3F7Acjs = require('./chunk-JF4C3F7A.cjs');
6
+ var _chunkCQTNN7B2cjs = require('./chunk-CQTNN7B2.cjs');
7
7
  require('./chunk-DVENQC2F.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
9
  require('./chunk-5IK56ULJ.cjs');
@@ -32,4 +32,4 @@ require('./chunk-IRCFHYKZ.cjs');
32
32
 
33
33
 
34
34
 
35
- exports.createConfigExtension = _chunkJF4C3F7Acjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkJF4C3F7Acjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkJF4C3F7Acjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkJF4C3F7Acjs.tryLoadStormWorkspaceConfig;
35
+ exports.createConfigExtension = _chunkCQTNN7B2cjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkCQTNN7B2cjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkCQTNN7B2cjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkCQTNN7B2cjs.tryLoadStormWorkspaceConfig;
@@ -3,7 +3,7 @@ import {
3
3
  createStormWorkspaceConfig,
4
4
  loadStormWorkspaceConfig,
5
5
  tryLoadStormWorkspaceConfig
6
- } from "./chunk-DA5LOQSA.js";
6
+ } from "./chunk-QLBQCN4Q.js";
7
7
  import "./chunk-ZLQAA425.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
9
  import "./chunk-CCW22JYO.js";
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkVLTBXBXDcjs = require('./chunk-VLTBXBXD.cjs');
6
- require('./chunk-JF4C3F7A.cjs');
5
+ var _chunkR5FSSKSUcjs = require('./chunk-R5FSSKSU.cjs');
6
+ require('./chunk-CQTNN7B2.cjs');
7
7
  require('./chunk-DVENQC2F.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
9
  require('./chunk-5IK56ULJ.cjs');
@@ -31,4 +31,4 @@ require('./chunk-IRCFHYKZ.cjs');
31
31
 
32
32
 
33
33
 
34
- exports.getConfig = _chunkVLTBXBXDcjs.getConfig; exports.getWorkspaceConfig = _chunkVLTBXBXDcjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkVLTBXBXDcjs.tryGetWorkspaceConfig;
34
+ exports.getConfig = _chunkR5FSSKSUcjs.getConfig; exports.getWorkspaceConfig = _chunkR5FSSKSUcjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkR5FSSKSUcjs.tryGetWorkspaceConfig;
@@ -2,8 +2,8 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-KDOTF6FA.js";
6
- import "./chunk-DA5LOQSA.js";
5
+ } from "./chunk-TLJGBZAD.js";
6
+ import "./chunk-QLBQCN4Q.js";
7
7
  import "./chunk-ZLQAA425.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
9
  import "./chunk-CCW22JYO.js";
package/dist/index.cjs CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkVLTBXBXDcjs = require('./chunk-VLTBXBXD.cjs');
5
+ var _chunkR5FSSKSUcjs = require('./chunk-R5FSSKSU.cjs');
6
6
 
7
7
 
8
8
 
9
9
 
10
10
 
11
- var _chunkJF4C3F7Acjs = require('./chunk-JF4C3F7A.cjs');
11
+ var _chunkCQTNN7B2cjs = require('./chunk-CQTNN7B2.cjs');
12
12
  require('./chunk-IWD6YQKX.cjs');
13
13
 
14
14
 
@@ -192,4 +192,4 @@ var _chunkIRCFHYKZcjs = require('./chunk-IRCFHYKZ.cjs');
192
192
 
193
193
 
194
194
 
195
- exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkKH5SONKWcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkKH5SONKWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkQLJYCKMDcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkQLJYCKMDcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkQLJYCKMDcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.createConfigExtension = _chunkJF4C3F7Acjs.createConfigExtension; exports.createLogger = _chunkBGR77S6Ycjs.createLogger; exports.createStormWorkspaceConfig = _chunkJF4C3F7Acjs.createStormWorkspaceConfig; exports.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError = _chunk5IK56ULJcjs.exitWithError; exports.exitWithSuccess = _chunk5IK56ULJcjs.exitWithSuccess; exports.extname = _chunkM3REM2FUcjs.extname; exports.findFileName = _chunkJMI7BRL7cjs.findFileName; exports.findFilePath = _chunkJMI7BRL7cjs.findFilePath; exports.findWorkspaceRoot = _chunkU436743Ucjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunkU436743Ucjs.findWorkspaceRootSafe; exports.format = _chunkM3REM2FUcjs.format; exports.formatLogMessage = _chunkRP3PSEDAcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkCTYIEJ7Ccjs.getChalk; exports.getColor = _chunkUCO4HZFNcjs.getColor; exports.getColorConfig = _chunkUCO4HZFNcjs.getColorConfig; exports.getConfig = _chunkVLTBXBXDcjs.getConfig; exports.getConfigEnv = _chunkQGASWRUNcjs.getConfigEnv; exports.getConfigFile = _chunkDVENQC2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkDVENQC2Fcjs.getConfigFileByName; exports.getExtensionEnv = _chunkQGASWRUNcjs.getExtensionEnv; exports.getLogFn = _chunkRP3PSEDAcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkKH5SONKWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkRP3PSEDAcjs.getStopwatch; exports.getWorkspaceConfig = _chunkVLTBXBXDcjs.getWorkspaceConfig; exports.handleProcess = _chunk5IK56ULJcjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkJF4C3F7Acjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkEV4US3SKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkEV4US3SKcjs.modifyCargoTable; exports.normalizeString = _chunkM3REM2FUcjs.normalizeString; exports.normalizeWindowsPath = _chunkM3REM2FUcjs.normalizeWindowsPath; exports.parse = _chunkM3REM2FUcjs.parse; exports.parseCargoToml = _chunkEV4US3SKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkEV4US3SKcjs.parseCargoTomlWithTree; exports.relative = _chunkM3REM2FUcjs.relative; exports.removeExtension = _chunkJMI7BRL7cjs.removeExtension; exports.resolve = _chunkM3REM2FUcjs.resolve; exports.run = _chunkDQT6QJRQcjs.run; exports.runAsync = _chunkDQT6QJRQcjs.runAsync; exports.sep = _chunkM3REM2FUcjs.sep; exports.setConfigEnv = _chunk7GRIRHUQcjs.setConfigEnv; exports.setExtensionEnv = _chunk7GRIRHUQcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkEV4US3SKcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkVLTBXBXDcjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkJF4C3F7Acjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkRP3PSEDAcjs.writeDebug; exports.writeError = _chunkRP3PSEDAcjs.writeError; exports.writeFatal = _chunkRP3PSEDAcjs.writeFatal; exports.writeInfo = _chunkRP3PSEDAcjs.writeInfo; exports.writeSuccess = _chunkRP3PSEDAcjs.writeSuccess; exports.writeSystem = _chunkRP3PSEDAcjs.writeSystem; exports.writeTrace = _chunkRP3PSEDAcjs.writeTrace; exports.writeWarning = _chunkRP3PSEDAcjs.writeWarning;
195
+ exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkKH5SONKWcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkKH5SONKWcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkQLJYCKMDcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkQLJYCKMDcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkQLJYCKMDcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.createConfigExtension = _chunkCQTNN7B2cjs.createConfigExtension; exports.createLogger = _chunkBGR77S6Ycjs.createLogger; exports.createStormWorkspaceConfig = _chunkCQTNN7B2cjs.createStormWorkspaceConfig; exports.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError = _chunk5IK56ULJcjs.exitWithError; exports.exitWithSuccess = _chunk5IK56ULJcjs.exitWithSuccess; exports.extname = _chunkM3REM2FUcjs.extname; exports.findFileName = _chunkJMI7BRL7cjs.findFileName; exports.findFilePath = _chunkJMI7BRL7cjs.findFilePath; exports.findWorkspaceRoot = _chunkU436743Ucjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunkU436743Ucjs.findWorkspaceRootSafe; exports.format = _chunkM3REM2FUcjs.format; exports.formatLogMessage = _chunkRP3PSEDAcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkCTYIEJ7Ccjs.getChalk; exports.getColor = _chunkUCO4HZFNcjs.getColor; exports.getColorConfig = _chunkUCO4HZFNcjs.getColorConfig; exports.getConfig = _chunkR5FSSKSUcjs.getConfig; exports.getConfigEnv = _chunkQGASWRUNcjs.getConfigEnv; exports.getConfigFile = _chunkDVENQC2Fcjs.getConfigFile; exports.getConfigFileByName = _chunkDVENQC2Fcjs.getConfigFileByName; exports.getExtensionEnv = _chunkQGASWRUNcjs.getExtensionEnv; exports.getLogFn = _chunkRP3PSEDAcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkKH5SONKWcjs.getPackageJsonConfig; exports.getStopwatch = _chunkRP3PSEDAcjs.getStopwatch; exports.getWorkspaceConfig = _chunkR5FSSKSUcjs.getWorkspaceConfig; exports.handleProcess = _chunk5IK56ULJcjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkCQTNN7B2cjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunkEV4US3SKcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkEV4US3SKcjs.modifyCargoTable; exports.normalizeString = _chunkM3REM2FUcjs.normalizeString; exports.normalizeWindowsPath = _chunkM3REM2FUcjs.normalizeWindowsPath; exports.parse = _chunkM3REM2FUcjs.parse; exports.parseCargoToml = _chunkEV4US3SKcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkEV4US3SKcjs.parseCargoTomlWithTree; exports.relative = _chunkM3REM2FUcjs.relative; exports.removeExtension = _chunkJMI7BRL7cjs.removeExtension; exports.resolve = _chunkM3REM2FUcjs.resolve; exports.run = _chunkDQT6QJRQcjs.run; exports.runAsync = _chunkDQT6QJRQcjs.runAsync; exports.sep = _chunkM3REM2FUcjs.sep; exports.setConfigEnv = _chunk7GRIRHUQcjs.setConfigEnv; exports.setExtensionEnv = _chunk7GRIRHUQcjs.setExtensionEnv; exports.stringifyCargoToml = _chunkEV4US3SKcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkR5FSSKSUcjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkCQTNN7B2cjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunkRP3PSEDAcjs.writeDebug; exports.writeError = _chunkRP3PSEDAcjs.writeError; exports.writeFatal = _chunkRP3PSEDAcjs.writeFatal; exports.writeInfo = _chunkRP3PSEDAcjs.writeInfo; exports.writeSuccess = _chunkRP3PSEDAcjs.writeSuccess; exports.writeSystem = _chunkRP3PSEDAcjs.writeSystem; exports.writeTrace = _chunkRP3PSEDAcjs.writeTrace; exports.writeWarning = _chunkRP3PSEDAcjs.writeWarning;
package/dist/index.js CHANGED
@@ -2,13 +2,13 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-KDOTF6FA.js";
5
+ } from "./chunk-TLJGBZAD.js";
6
6
  import {
7
7
  createConfigExtension,
8
8
  createStormWorkspaceConfig,
9
9
  loadStormWorkspaceConfig,
10
10
  tryLoadStormWorkspaceConfig
11
- } from "./chunk-DA5LOQSA.js";
11
+ } from "./chunk-QLBQCN4Q.js";
12
12
  import "./chunk-2AVLCXLT.js";
13
13
  import {
14
14
  getConfigFile,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.176.5",
3
+ "version": "1.176.7",
4
4
  "type": "module",
5
5
  "description": "A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.",
6
6
  "repository": {
@@ -211,7 +211,7 @@
211
211
  ],
212
212
  "dependencies": {
213
213
  "@ltd/j-toml": "1.38.0",
214
- "@storm-software/config": "^1.125.4",
214
+ "@storm-software/config": "^1.125.6",
215
215
  "c12": "^2.0.0-beta.2",
216
216
  "chalk": "^4.1.2",
217
217
  "commander": "^12.1.0",
@@ -224,5 +224,5 @@
224
224
  "devDependencies": { "@types/node": "^22.10.2", "tsup": "8.4.0" },
225
225
  "publishConfig": { "access": "public" },
226
226
  "sideEffects": false,
227
- "gitHead": "dbe7708d23dd5fd8289baed4045d6580b4067496"
227
+ "gitHead": "edec74f2b1c6174fae001ac240bb291296c84fab"
228
228
  }