@storm-software/config-tools 1.180.15 → 1.181.0

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.180.13-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.180.15-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
@@ -773,6 +773,7 @@ var getConfigEnv = () => {
773
773
  let config = {
774
774
  extends: process.env[`${prefix}EXTENDS`] || void 0,
775
775
  name: process.env[`${prefix}NAME`] || void 0,
776
+ variant: process.env[`${prefix}VARIANT`] || void 0,
776
777
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
777
778
  owner: process.env[`${prefix}OWNER`] || void 0,
778
779
  bot: {
@@ -997,6 +998,9 @@ var setConfigEnv = (config) => {
997
998
  if (config.name) {
998
999
  process.env[`${prefix}NAME`] = config.name;
999
1000
  }
1001
+ if (config.variant) {
1002
+ process.env[`${prefix}VARIANT`] = config.variant;
1003
+ }
1000
1004
  if (config.namespace) {
1001
1005
  process.env[`${prefix}NAMESPACE`] = config.namespace;
1002
1006
  }
package/bin/config.js CHANGED
@@ -748,6 +748,7 @@ var getConfigEnv = () => {
748
748
  let config = {
749
749
  extends: process.env[`${prefix}EXTENDS`] || void 0,
750
750
  name: process.env[`${prefix}NAME`] || void 0,
751
+ variant: process.env[`${prefix}VARIANT`] || void 0,
751
752
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
752
753
  owner: process.env[`${prefix}OWNER`] || void 0,
753
754
  bot: {
@@ -972,6 +973,9 @@ var setConfigEnv = (config) => {
972
973
  if (config.name) {
973
974
  process.env[`${prefix}NAME`] = config.name;
974
975
  }
976
+ if (config.variant) {
977
+ process.env[`${prefix}VARIANT`] = config.variant;
978
+ }
975
979
  if (config.namespace) {
976
980
  process.env[`${prefix}NAMESPACE`] = config.namespace;
977
981
  }
@@ -15,11 +15,11 @@ import {
15
15
  } from "./chunk-7L77OWOV.js";
16
16
  import {
17
17
  setConfigEnv
18
- } from "./chunk-5ICSGZD6.js";
18
+ } from "./chunk-FOHZ3IDH.js";
19
19
  import {
20
20
  getConfigEnv,
21
21
  getExtensionEnv
22
- } from "./chunk-KRV2PKEF.js";
22
+ } from "./chunk-HOTVYRCT.js";
23
23
 
24
24
  // src/create-storm-config.ts
25
25
  import { workspaceConfigSchema } from "@storm-software/config/schema";
@@ -39,6 +39,9 @@ var setConfigEnv = (config) => {
39
39
  if (config.name) {
40
40
  process.env[`${prefix}NAME`] = config.name;
41
41
  }
42
+ if (config.variant) {
43
+ process.env[`${prefix}VARIANT`] = config.variant;
44
+ }
42
45
  if (config.namespace) {
43
46
  process.env[`${prefix}NAMESPACE`] = config.namespace;
44
47
  }
@@ -29,6 +29,7 @@ var getConfigEnv = () => {
29
29
  let config = {
30
30
  extends: process.env[`${prefix}EXTENDS`] || void 0,
31
31
  name: process.env[`${prefix}NAME`] || void 0,
32
+ variant: process.env[`${prefix}VARIANT`] || void 0,
32
33
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
33
34
  owner: process.env[`${prefix}OWNER`] || void 0,
34
35
  bot: {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  loadStormWorkspaceConfig,
3
3
  tryLoadStormWorkspaceConfig
4
- } from "./chunk-VBNWOOML.js";
4
+ } from "./chunk-EQU3L4HQ.js";
5
5
  import {
6
6
  findWorkspaceRoot
7
7
  } from "./chunk-SZXSPLS6.js";
@@ -39,6 +39,9 @@ var setConfigEnv = (config) => {
39
39
  if (config.name) {
40
40
  process.env[`${prefix}NAME`] = config.name;
41
41
  }
42
+ if (config.variant) {
43
+ process.env[`${prefix}VARIANT`] = config.variant;
44
+ }
42
45
  if (config.namespace) {
43
46
  process.env[`${prefix}NAMESPACE`] = config.namespace;
44
47
  }
@@ -1,14 +1,14 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkFG6UDV4Rcjs = require('./chunk-FG6UDV4R.cjs');
4
+ var _chunkVGSLMSNVcjs = require('./chunk-VGSLMSNV.cjs');
5
5
 
6
6
 
7
7
  var _chunkNOTWBXXMcjs = require('./chunk-NOTWBXXM.cjs');
8
8
 
9
9
  // src/get-config.ts
10
10
  var getConfig = (workspaceRoot, skipLogs = false) => {
11
- return _chunkFG6UDV4Rcjs.loadStormWorkspaceConfig.call(void 0, workspaceRoot, skipLogs);
11
+ return _chunkVGSLMSNVcjs.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 = _chunkNOTWBXXMcjs.findWorkspaceRoot.call(void 0, options.cwd);
25
25
  }
26
- return _chunkFG6UDV4Rcjs.tryLoadStormWorkspaceConfig.call(void 0,
26
+ return _chunkVGSLMSNVcjs.tryLoadStormWorkspaceConfig.call(void 0,
27
27
  workspaceRoot,
28
28
  skipLogs,
29
29
  options.useDefault
@@ -29,6 +29,7 @@ var getConfigEnv = () => {
29
29
  let config = {
30
30
  extends: process.env[`${prefix}EXTENDS`] || void 0,
31
31
  name: process.env[`${prefix}NAME`] || void 0,
32
+ variant: process.env[`${prefix}VARIANT`] || void 0,
32
33
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
33
34
  owner: process.env[`${prefix}OWNER`] || void 0,
34
35
  bot: {
@@ -15,11 +15,11 @@ var _chunkNOTWBXXMcjs = require('./chunk-NOTWBXXM.cjs');
15
15
  var _chunk72EOBSKWcjs = require('./chunk-72EOBSKW.cjs');
16
16
 
17
17
 
18
- var _chunkWD22K5JVcjs = require('./chunk-WD22K5JV.cjs');
18
+ var _chunkP3ZMLNC2cjs = require('./chunk-P3ZMLNC2.cjs');
19
19
 
20
20
 
21
21
 
22
- var _chunk76OKROBTcjs = require('./chunk-76OKROBT.cjs');
22
+ var _chunkVGRV7U7Acjs = require('./chunk-VGRV7U7A.cjs');
23
23
 
24
24
  // src/create-storm-config.ts
25
25
  var _schema = require('@storm-software/config/schema');
@@ -33,7 +33,7 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
33
33
  if (!_workspaceRoot) {
34
34
  _workspaceRoot = _chunkNOTWBXXMcjs.findWorkspaceRoot.call(void 0, );
35
35
  }
36
- const configEnv = _chunk76OKROBTcjs.getConfigEnv.call(void 0, );
36
+ const configEnv = _chunkVGRV7U7Acjs.getConfigEnv.call(void 0, );
37
37
  const configFile = await _chunkADFY75XScjs.getConfigFile.call(void 0, _workspaceRoot);
38
38
  if (!configFile) {
39
39
  if (!skipLogs) {
@@ -89,7 +89,7 @@ var createConfigExtension = (extensionName, schema) => {
89
89
  if (_extension_cache.has(extension_cache_key)) {
90
90
  return _extension_cache.get(extension_cache_key);
91
91
  }
92
- let extension = _chunk76OKROBTcjs.getExtensionEnv.call(void 0, extensionName);
92
+ let extension = _chunkVGRV7U7Acjs.getExtensionEnv.call(void 0, extensionName);
93
93
  if (schema) {
94
94
  extension = schema.parse(extension);
95
95
  }
@@ -104,7 +104,7 @@ var loadStormWorkspaceConfig = async (workspaceRoot, skipLogs = false) => {
104
104
  skipLogs,
105
105
  true
106
106
  );
107
- _chunkWD22K5JVcjs.setConfigEnv.call(void 0, config);
107
+ _chunkP3ZMLNC2cjs.setConfigEnv.call(void 0, config);
108
108
  if (!skipLogs && !config.skipConfigLogging) {
109
109
  _chunk72EOBSKWcjs.writeTrace.call(void 0,
110
110
  `\u2699\uFE0F Using Storm Workspace configuration:
@@ -126,7 +126,7 @@ var tryLoadStormWorkspaceConfig = async (workspaceRoot, skipLogs = true, useDefa
126
126
  if (!config) {
127
127
  return void 0;
128
128
  }
129
- _chunkWD22K5JVcjs.setConfigEnv.call(void 0, config);
129
+ _chunkP3ZMLNC2cjs.setConfigEnv.call(void 0, config);
130
130
  if (!skipLogs && !config.skipConfigLogging) {
131
131
  _chunk72EOBSKWcjs.writeTrace.call(void 0,
132
132
  `\u2699\uFE0F Using Storm Workspace configuration:
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkFG6UDV4Rcjs = require('./chunk-FG6UDV4R.cjs');
6
+ var _chunkVGSLMSNVcjs = require('./chunk-VGSLMSNV.cjs');
7
7
  require('./chunk-ADFY75XS.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
9
  require('./chunk-CRQ64CT5.cjs');
@@ -22,8 +22,8 @@ require('./chunk-LOY6ICHZ.cjs');
22
22
  require('./chunk-WBQ4VS7E.cjs');
23
23
  require('./chunk-DTGT4OI3.cjs');
24
24
  require('./chunk-BN6MEGGY.cjs');
25
- require('./chunk-WD22K5JV.cjs');
26
- require('./chunk-76OKROBT.cjs');
25
+ require('./chunk-P3ZMLNC2.cjs');
26
+ require('./chunk-VGRV7U7A.cjs');
27
27
  require('./chunk-M3REM2FU.cjs');
28
28
  require('./chunk-4PX5UVAN.cjs');
29
29
  require('./chunk-IRCFHYKZ.cjs');
@@ -32,4 +32,4 @@ require('./chunk-IRCFHYKZ.cjs');
32
32
 
33
33
 
34
34
 
35
- exports.createConfigExtension = _chunkFG6UDV4Rcjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkFG6UDV4Rcjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkFG6UDV4Rcjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkFG6UDV4Rcjs.tryLoadStormWorkspaceConfig;
35
+ exports.createConfigExtension = _chunkVGSLMSNVcjs.createConfigExtension; exports.createStormWorkspaceConfig = _chunkVGSLMSNVcjs.createStormWorkspaceConfig; exports.loadStormWorkspaceConfig = _chunkVGSLMSNVcjs.loadStormWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkVGSLMSNVcjs.tryLoadStormWorkspaceConfig;
@@ -3,7 +3,7 @@ import {
3
3
  createStormWorkspaceConfig,
4
4
  loadStormWorkspaceConfig,
5
5
  tryLoadStormWorkspaceConfig
6
- } from "./chunk-VBNWOOML.js";
6
+ } from "./chunk-EQU3L4HQ.js";
7
7
  import "./chunk-VDG3JG4I.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
9
  import "./chunk-FVKBGSDE.js";
@@ -22,8 +22,8 @@ import "./chunk-HVVJHTFS.js";
22
22
  import "./chunk-LM2UMGYA.js";
23
23
  import "./chunk-G2MK47WL.js";
24
24
  import "./chunk-CZ4IE2QN.js";
25
- import "./chunk-5ICSGZD6.js";
26
- import "./chunk-KRV2PKEF.js";
25
+ import "./chunk-FOHZ3IDH.js";
26
+ import "./chunk-HOTVYRCT.js";
27
27
  import "./chunk-7IMLZPZF.js";
28
28
  import "./chunk-K4CDYUQR.js";
29
29
  import "./chunk-POXTJ6GF.js";
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk76OKROBTcjs = require('../chunk-76OKROBT.cjs');
4
+ var _chunkVGRV7U7Acjs = require('../chunk-VGRV7U7A.cjs');
5
5
  require('../chunk-M3REM2FU.cjs');
6
6
  require('../chunk-4PX5UVAN.cjs');
7
7
  require('../chunk-IRCFHYKZ.cjs');
8
8
 
9
9
 
10
10
 
11
- exports.getConfigEnv = _chunk76OKROBTcjs.getConfigEnv; exports.getExtensionEnv = _chunk76OKROBTcjs.getExtensionEnv;
11
+ exports.getConfigEnv = _chunkVGRV7U7Acjs.getConfigEnv; exports.getExtensionEnv = _chunkVGRV7U7Acjs.getExtensionEnv;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getConfigEnv,
3
3
  getExtensionEnv
4
- } from "../chunk-KRV2PKEF.js";
4
+ } from "../chunk-HOTVYRCT.js";
5
5
  import "../chunk-7IMLZPZF.js";
6
6
  import "../chunk-K4CDYUQR.js";
7
7
  import "../chunk-POXTJ6GF.js";
@@ -2,11 +2,11 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkWD22K5JVcjs = require('../chunk-WD22K5JV.cjs');
5
+ var _chunkP3ZMLNC2cjs = require('../chunk-P3ZMLNC2.cjs');
6
6
 
7
7
 
8
8
 
9
- var _chunk76OKROBTcjs = require('../chunk-76OKROBT.cjs');
9
+ var _chunkVGRV7U7Acjs = require('../chunk-VGRV7U7A.cjs');
10
10
  require('../chunk-M3REM2FU.cjs');
11
11
  require('../chunk-4PX5UVAN.cjs');
12
12
  require('../chunk-IRCFHYKZ.cjs');
@@ -15,4 +15,4 @@ require('../chunk-IRCFHYKZ.cjs');
15
15
 
16
16
 
17
17
 
18
- exports.getConfigEnv = _chunk76OKROBTcjs.getConfigEnv; exports.getExtensionEnv = _chunk76OKROBTcjs.getExtensionEnv; exports.setConfigEnv = _chunkWD22K5JVcjs.setConfigEnv; exports.setExtensionEnv = _chunkWD22K5JVcjs.setExtensionEnv;
18
+ exports.getConfigEnv = _chunkVGRV7U7Acjs.getConfigEnv; exports.getExtensionEnv = _chunkVGRV7U7Acjs.getExtensionEnv; exports.setConfigEnv = _chunkP3ZMLNC2cjs.setConfigEnv; exports.setExtensionEnv = _chunkP3ZMLNC2cjs.setExtensionEnv;
package/dist/env/index.js CHANGED
@@ -2,11 +2,11 @@ import "../chunk-L6UNTUC4.js";
2
2
  import {
3
3
  setConfigEnv,
4
4
  setExtensionEnv
5
- } from "../chunk-5ICSGZD6.js";
5
+ } from "../chunk-FOHZ3IDH.js";
6
6
  import {
7
7
  getConfigEnv,
8
8
  getExtensionEnv
9
- } from "../chunk-KRV2PKEF.js";
9
+ } from "../chunk-HOTVYRCT.js";
10
10
  import "../chunk-7IMLZPZF.js";
11
11
  import "../chunk-K4CDYUQR.js";
12
12
  import "../chunk-POXTJ6GF.js";
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkWD22K5JVcjs = require('../chunk-WD22K5JV.cjs');
4
+ var _chunkP3ZMLNC2cjs = require('../chunk-P3ZMLNC2.cjs');
5
5
  require('../chunk-M3REM2FU.cjs');
6
6
  require('../chunk-4PX5UVAN.cjs');
7
7
  require('../chunk-IRCFHYKZ.cjs');
8
8
 
9
9
 
10
10
 
11
- exports.setConfigEnv = _chunkWD22K5JVcjs.setConfigEnv; exports.setExtensionEnv = _chunkWD22K5JVcjs.setExtensionEnv;
11
+ exports.setConfigEnv = _chunkP3ZMLNC2cjs.setConfigEnv; exports.setExtensionEnv = _chunkP3ZMLNC2cjs.setExtensionEnv;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  setConfigEnv,
3
3
  setExtensionEnv
4
- } from "../chunk-5ICSGZD6.js";
4
+ } from "../chunk-FOHZ3IDH.js";
5
5
  import "../chunk-7IMLZPZF.js";
6
6
  import "../chunk-K4CDYUQR.js";
7
7
  import "../chunk-POXTJ6GF.js";
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
 
5
- var _chunk46JG4AXYcjs = require('./chunk-46JG4AXY.cjs');
6
- require('./chunk-FG6UDV4R.cjs');
5
+ var _chunkPZLRGHBScjs = require('./chunk-PZLRGHBS.cjs');
6
+ require('./chunk-VGSLMSNV.cjs');
7
7
  require('./chunk-ADFY75XS.cjs');
8
8
  require('./chunk-3COHMHPU.cjs');
9
9
  require('./chunk-CRQ64CT5.cjs');
@@ -22,8 +22,8 @@ require('./chunk-LOY6ICHZ.cjs');
22
22
  require('./chunk-WBQ4VS7E.cjs');
23
23
  require('./chunk-DTGT4OI3.cjs');
24
24
  require('./chunk-BN6MEGGY.cjs');
25
- require('./chunk-WD22K5JV.cjs');
26
- require('./chunk-76OKROBT.cjs');
25
+ require('./chunk-P3ZMLNC2.cjs');
26
+ require('./chunk-VGRV7U7A.cjs');
27
27
  require('./chunk-M3REM2FU.cjs');
28
28
  require('./chunk-4PX5UVAN.cjs');
29
29
  require('./chunk-IRCFHYKZ.cjs');
@@ -31,4 +31,4 @@ require('./chunk-IRCFHYKZ.cjs');
31
31
 
32
32
 
33
33
 
34
- exports.getConfig = _chunk46JG4AXYcjs.getConfig; exports.getWorkspaceConfig = _chunk46JG4AXYcjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunk46JG4AXYcjs.tryGetWorkspaceConfig;
34
+ exports.getConfig = _chunkPZLRGHBScjs.getConfig; exports.getWorkspaceConfig = _chunkPZLRGHBScjs.getWorkspaceConfig; exports.tryGetWorkspaceConfig = _chunkPZLRGHBScjs.tryGetWorkspaceConfig;
@@ -2,8 +2,8 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-EVNU73P3.js";
6
- import "./chunk-VBNWOOML.js";
5
+ } from "./chunk-OUICITIJ.js";
6
+ import "./chunk-EQU3L4HQ.js";
7
7
  import "./chunk-VDG3JG4I.js";
8
8
  import "./chunk-UKGRDKIH.js";
9
9
  import "./chunk-FVKBGSDE.js";
@@ -22,8 +22,8 @@ import "./chunk-HVVJHTFS.js";
22
22
  import "./chunk-LM2UMGYA.js";
23
23
  import "./chunk-G2MK47WL.js";
24
24
  import "./chunk-CZ4IE2QN.js";
25
- import "./chunk-5ICSGZD6.js";
26
- import "./chunk-KRV2PKEF.js";
25
+ import "./chunk-FOHZ3IDH.js";
26
+ import "./chunk-HOTVYRCT.js";
27
27
  import "./chunk-7IMLZPZF.js";
28
28
  import "./chunk-K4CDYUQR.js";
29
29
  import "./chunk-POXTJ6GF.js";
package/dist/index.cjs CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
 
4
4
 
5
- var _chunk46JG4AXYcjs = require('./chunk-46JG4AXY.cjs');
5
+ var _chunkPZLRGHBScjs = require('./chunk-PZLRGHBS.cjs');
6
6
 
7
7
 
8
8
 
9
9
 
10
10
 
11
- var _chunkFG6UDV4Rcjs = require('./chunk-FG6UDV4R.cjs');
11
+ var _chunkVGSLMSNVcjs = require('./chunk-VGSLMSNV.cjs');
12
12
  require('./chunk-IWD6YQKX.cjs');
13
13
 
14
14
 
@@ -90,11 +90,11 @@ require('./chunk-65SWKEHV.cjs');
90
90
 
91
91
 
92
92
 
93
- var _chunkWD22K5JVcjs = require('./chunk-WD22K5JV.cjs');
93
+ var _chunkP3ZMLNC2cjs = require('./chunk-P3ZMLNC2.cjs');
94
94
 
95
95
 
96
96
 
97
- var _chunk76OKROBTcjs = require('./chunk-76OKROBT.cjs');
97
+ var _chunkVGRV7U7Acjs = require('./chunk-VGRV7U7A.cjs');
98
98
 
99
99
 
100
100
 
@@ -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 = _chunkMKPH762Ocjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkMBEJXPRQcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkJ7BFGUIXcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkJ7BFGUIXcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkJ7BFGUIXcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.createConfigExtension = _chunkFG6UDV4Rcjs.createConfigExtension; exports.createLogger = _chunkESUPAI3Ycjs.createLogger; exports.createStormWorkspaceConfig = _chunkFG6UDV4Rcjs.createStormWorkspaceConfig; exports.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError = _chunkCRQ64CT5cjs.exitWithError; exports.exitWithSuccess = _chunkCRQ64CT5cjs.exitWithSuccess; exports.extname = _chunkM3REM2FUcjs.extname; exports.findFileName = _chunkJMI7BRL7cjs.findFileName; exports.findFilePath = _chunkJMI7BRL7cjs.findFilePath; exports.findWorkspaceRoot = _chunkNOTWBXXMcjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunkNOTWBXXMcjs.findWorkspaceRootSafe; exports.format = _chunkM3REM2FUcjs.format; exports.formatLogMessage = _chunk72EOBSKWcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getColor = _chunkMKPH762Ocjs.getColor; exports.getColors = _chunkMKPH762Ocjs.getColors; exports.getConfig = _chunk46JG4AXYcjs.getConfig; exports.getConfigEnv = _chunk76OKROBTcjs.getConfigEnv; exports.getConfigFile = _chunkADFY75XScjs.getConfigFile; exports.getConfigFileByName = _chunkADFY75XScjs.getConfigFileByName; exports.getExtensionEnv = _chunk76OKROBTcjs.getExtensionEnv; exports.getGradient = _chunkMKPH762Ocjs.getGradient; exports.getLogFn = _chunk72EOBSKWcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkMBEJXPRQcjs.getPackageJsonConfig; exports.getStopwatch = _chunk72EOBSKWcjs.getStopwatch; exports.getWorkspaceConfig = _chunk46JG4AXYcjs.getWorkspaceConfig; exports.handleProcess = _chunkCRQ64CT5cjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkFG6UDV4Rcjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunk363CTBPHcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunk363CTBPHcjs.modifyCargoTable; exports.normalizeString = _chunkM3REM2FUcjs.normalizeString; exports.normalizeWindowsPath = _chunkM3REM2FUcjs.normalizeWindowsPath; exports.parse = _chunkM3REM2FUcjs.parse; exports.parseCargoToml = _chunk363CTBPHcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunk363CTBPHcjs.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 = _chunkWD22K5JVcjs.setConfigEnv; exports.setExtensionEnv = _chunkWD22K5JVcjs.setExtensionEnv; exports.stringifyCargoToml = _chunk363CTBPHcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunk46JG4AXYcjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkFG6UDV4Rcjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunk72EOBSKWcjs.writeDebug; exports.writeError = _chunk72EOBSKWcjs.writeError; exports.writeFatal = _chunk72EOBSKWcjs.writeFatal; exports.writeInfo = _chunk72EOBSKWcjs.writeInfo; exports.writeSuccess = _chunk72EOBSKWcjs.writeSuccess; exports.writeSystem = _chunk72EOBSKWcjs.writeSystem; exports.writeTrace = _chunk72EOBSKWcjs.writeTrace; exports.writeWarning = _chunk72EOBSKWcjs.writeWarning;
197
+ exports.CONSOLE_ICONS = _chunkWBQ4VS7Ecjs.CONSOLE_ICONS; exports.DEFAULT_COLOR_CONFIG = _chunkMKPH762Ocjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; exports.LogLevel = _chunkIRCFHYKZcjs.LogLevel; exports.LogLevelLabel = _chunkIRCFHYKZcjs.LogLevelLabel; exports.applyDefaultConfig = _chunkMBEJXPRQcjs.applyDefaultConfig; exports.applyWorkspaceBaseTokens = _chunkJ7BFGUIXcjs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkJ7BFGUIXcjs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkJ7BFGUIXcjs.applyWorkspaceTokens; exports.basename = _chunkM3REM2FUcjs.basename; exports.correctPaths = _chunkM3REM2FUcjs.correctPaths; exports.createConfigExtension = _chunkVGSLMSNVcjs.createConfigExtension; exports.createLogger = _chunkESUPAI3Ycjs.createLogger; exports.createStormWorkspaceConfig = _chunkVGSLMSNVcjs.createStormWorkspaceConfig; exports.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError = _chunkCRQ64CT5cjs.exitWithError; exports.exitWithSuccess = _chunkCRQ64CT5cjs.exitWithSuccess; exports.extname = _chunkM3REM2FUcjs.extname; exports.findFileName = _chunkJMI7BRL7cjs.findFileName; exports.findFilePath = _chunkJMI7BRL7cjs.findFilePath; exports.findWorkspaceRoot = _chunkNOTWBXXMcjs.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunkNOTWBXXMcjs.findWorkspaceRootSafe; exports.format = _chunkM3REM2FUcjs.format; exports.formatLogMessage = _chunk72EOBSKWcjs.formatLogMessage; exports.formatTimestamp = _chunkBN6MEGGYcjs.formatTimestamp; exports.getChalk = _chunkLOY6ICHZcjs.getChalk; exports.getColor = _chunkMKPH762Ocjs.getColor; exports.getColors = _chunkMKPH762Ocjs.getColors; exports.getConfig = _chunkPZLRGHBScjs.getConfig; exports.getConfigEnv = _chunkVGRV7U7Acjs.getConfigEnv; exports.getConfigFile = _chunkADFY75XScjs.getConfigFile; exports.getConfigFileByName = _chunkADFY75XScjs.getConfigFileByName; exports.getExtensionEnv = _chunkVGRV7U7Acjs.getExtensionEnv; exports.getGradient = _chunkMKPH762Ocjs.getGradient; exports.getLogFn = _chunk72EOBSKWcjs.getLogFn; exports.getLogLevel = _chunk4PX5UVANcjs.getLogLevel; exports.getLogLevelLabel = _chunk4PX5UVANcjs.getLogLevelLabel; exports.getPackageJsonConfig = _chunkMBEJXPRQcjs.getPackageJsonConfig; exports.getStopwatch = _chunk72EOBSKWcjs.getStopwatch; exports.getWorkspaceConfig = _chunkPZLRGHBScjs.getWorkspaceConfig; exports.handleProcess = _chunkCRQ64CT5cjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.isUnicodeSupported = _chunkDTGT4OI3cjs.isUnicodeSupported; exports.isVerbose = _chunk4PX5UVANcjs.isVerbose; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; exports.loadStormWorkspaceConfig = _chunkVGSLMSNVcjs.loadStormWorkspaceConfig; exports.modifyCargoNestedTable = _chunk363CTBPHcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunk363CTBPHcjs.modifyCargoTable; exports.normalizeString = _chunkM3REM2FUcjs.normalizeString; exports.normalizeWindowsPath = _chunkM3REM2FUcjs.normalizeWindowsPath; exports.parse = _chunkM3REM2FUcjs.parse; exports.parseCargoToml = _chunk363CTBPHcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunk363CTBPHcjs.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 = _chunkP3ZMLNC2cjs.setConfigEnv; exports.setExtensionEnv = _chunkP3ZMLNC2cjs.setExtensionEnv; exports.stringifyCargoToml = _chunk363CTBPHcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.toNamespacedPath; exports.tryGetWorkspaceConfig = _chunkPZLRGHBScjs.tryGetWorkspaceConfig; exports.tryLoadStormWorkspaceConfig = _chunkVGSLMSNVcjs.tryLoadStormWorkspaceConfig; exports.writeDebug = _chunk72EOBSKWcjs.writeDebug; exports.writeError = _chunk72EOBSKWcjs.writeError; exports.writeFatal = _chunk72EOBSKWcjs.writeFatal; exports.writeInfo = _chunk72EOBSKWcjs.writeInfo; exports.writeSuccess = _chunk72EOBSKWcjs.writeSuccess; exports.writeSystem = _chunk72EOBSKWcjs.writeSystem; exports.writeTrace = _chunk72EOBSKWcjs.writeTrace; exports.writeWarning = _chunk72EOBSKWcjs.writeWarning;
package/dist/index.js CHANGED
@@ -2,13 +2,13 @@ import {
2
2
  getConfig,
3
3
  getWorkspaceConfig,
4
4
  tryGetWorkspaceConfig
5
- } from "./chunk-EVNU73P3.js";
5
+ } from "./chunk-OUICITIJ.js";
6
6
  import {
7
7
  createConfigExtension,
8
8
  createStormWorkspaceConfig,
9
9
  loadStormWorkspaceConfig,
10
10
  tryLoadStormWorkspaceConfig
11
- } from "./chunk-VBNWOOML.js";
11
+ } from "./chunk-EQU3L4HQ.js";
12
12
  import "./chunk-2AVLCXLT.js";
13
13
  import {
14
14
  getConfigFile,
@@ -90,11 +90,11 @@ import "./chunk-L6UNTUC4.js";
90
90
  import {
91
91
  setConfigEnv,
92
92
  setExtensionEnv
93
- } from "./chunk-5ICSGZD6.js";
93
+ } from "./chunk-FOHZ3IDH.js";
94
94
  import {
95
95
  getConfigEnv,
96
96
  getExtensionEnv
97
- } from "./chunk-KRV2PKEF.js";
97
+ } from "./chunk-HOTVYRCT.js";
98
98
  import {
99
99
  basename,
100
100
  correctPaths,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.180.15",
3
+ "version": "1.181.0",
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.128.13",
214
+ "@storm-software/config": "^1.129.0",
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": "ead820214c8c4cf25d5311c154819f2c2f8f7356"
227
+ "gitHead": "bd2cceced6f34cd309c7a8cf92fca76621c40470"
228
228
  }