@storm-software/config-tools 1.178.7 → 1.180.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.
Files changed (62) hide show
  1. package/README.md +2 -1
  2. package/bin/config.cjs +48 -26
  3. package/bin/config.js +49 -27
  4. package/dist/{chunk-2LK4ZGLW.cjs → chunk-363CTBPH.cjs} +2 -2
  5. package/dist/{chunk-XA4G3MSV.cjs → chunk-72EOBSKW.cjs} +10 -10
  6. package/dist/{chunk-PQATN7O6.cjs → chunk-7AZCYZH3.cjs} +17 -17
  7. package/dist/{chunk-EK7IXIHA.js → chunk-7L77OWOV.js} +1 -1
  8. package/dist/{chunk-ZTCEXE7T.cjs → chunk-ADFY75XS.cjs} +3 -3
  9. package/dist/{chunk-2FH55GER.js → chunk-ATECARIE.js} +13 -12
  10. package/dist/{chunk-TTT5G3NU.js → chunk-BCAYP4JB.js} +1 -1
  11. package/dist/{chunk-UMSUK27E.js → chunk-C3ZWMMO4.js} +19 -10
  12. package/dist/{chunk-GJ7QM6FN.cjs → chunk-CRQ64CT5.cjs} +9 -9
  13. package/dist/{chunk-CO4ZADWX.cjs → chunk-D5MVYNCS.cjs} +19 -10
  14. package/dist/{chunk-3235YC2J.cjs → chunk-ESUPAI3Y.cjs} +9 -9
  15. package/dist/{chunk-X56PD6LB.js → chunk-FVKBGSDE.js} +1 -1
  16. package/dist/{chunk-TFYMXKIT.js → chunk-HMDBPXJC.js} +1 -1
  17. package/dist/{chunk-BTZVY4J2.js → chunk-L72FV3TP.js} +1 -1
  18. package/dist/{chunk-3TO7MEJT.js → chunk-LA3S35UI.js} +4 -4
  19. package/dist/{chunk-FBMPJNMM.js → chunk-LCK7XQJ3.js} +6 -6
  20. package/dist/{chunk-CLT4IIBS.cjs → chunk-LRSCRZFN.cjs} +13 -12
  21. package/dist/{chunk-YGJGYNZL.cjs → chunk-MKPH762O.cjs} +4 -4
  22. package/dist/{chunk-NYDB5GIZ.js → chunk-VDG3JG4I.js} +1 -1
  23. package/dist/{chunk-EDQ2BMIV.cjs → chunk-VWNMWYHQ.cjs} +3 -3
  24. package/dist/config-file/get-config-file.cjs +7 -7
  25. package/dist/config-file/get-config-file.js +6 -6
  26. package/dist/config-file/index.cjs +7 -7
  27. package/dist/config-file/index.js +6 -6
  28. package/dist/create-storm-config.cjs +10 -10
  29. package/dist/create-storm-config.js +9 -9
  30. package/dist/env/get-env.cjs +2 -2
  31. package/dist/env/get-env.js +1 -1
  32. package/dist/env/index.cjs +3 -3
  33. package/dist/env/index.js +2 -2
  34. package/dist/env/set-env.cjs +2 -2
  35. package/dist/env/set-env.js +1 -1
  36. package/dist/get-config.cjs +11 -11
  37. package/dist/get-config.js +10 -10
  38. package/dist/index.cjs +11 -11
  39. package/dist/index.d.cts +1 -1
  40. package/dist/index.d.ts +1 -1
  41. package/dist/index.js +12 -12
  42. package/dist/logger/console.cjs +3 -3
  43. package/dist/logger/console.js +2 -2
  44. package/dist/logger/create-logger.cjs +4 -4
  45. package/dist/logger/create-logger.js +3 -3
  46. package/dist/logger/index.cjs +4 -4
  47. package/dist/logger/index.js +3 -3
  48. package/dist/utilities/colors.cjs +2 -2
  49. package/dist/utilities/colors.d.cts +4 -44
  50. package/dist/utilities/colors.d.ts +4 -44
  51. package/dist/utilities/colors.js +3 -3
  52. package/dist/utilities/get-default-config.d.cts +1 -1
  53. package/dist/utilities/get-default-config.d.ts +1 -1
  54. package/dist/utilities/index.cjs +6 -6
  55. package/dist/utilities/index.d.cts +1 -2
  56. package/dist/utilities/index.d.ts +1 -2
  57. package/dist/utilities/index.js +7 -7
  58. package/dist/utilities/process-handler.cjs +4 -4
  59. package/dist/utilities/process-handler.js +3 -3
  60. package/dist/utilities/toml.cjs +5 -5
  61. package/dist/utilities/toml.js +4 -4
  62. package/package.json +3 -3
@@ -1,56 +1,16 @@
1
- import { StormWorkspaceConfig, ColorConfig } from '@storm-software/config/types';
2
- import * as z from 'zod';
3
-
4
- declare const MultiThemeColorConfigSchema: z.ZodObject<{
5
- dark: z.ZodObject<{
6
- foreground: z.ZodDefault<z.ZodString>;
7
- background: z.ZodDefault<z.ZodString>;
8
- brand: z.ZodDefault<z.ZodString>;
9
- alternate: z.ZodOptional<z.ZodString>;
10
- accent: z.ZodOptional<z.ZodString>;
11
- link: z.ZodDefault<z.ZodString>;
12
- help: z.ZodDefault<z.ZodString>;
13
- success: z.ZodDefault<z.ZodString>;
14
- info: z.ZodDefault<z.ZodString>;
15
- warning: z.ZodDefault<z.ZodString>;
16
- danger: z.ZodDefault<z.ZodString>;
17
- fatal: z.ZodOptional<z.ZodString>;
18
- positive: z.ZodDefault<z.ZodString>;
19
- negative: z.ZodDefault<z.ZodString>;
20
- gradient: z.ZodOptional<z.ZodArray<z.ZodString>>;
21
- }, z.core.$strip>;
22
- light: z.ZodObject<{
23
- foreground: z.ZodDefault<z.ZodString>;
24
- background: z.ZodDefault<z.ZodString>;
25
- brand: z.ZodDefault<z.ZodString>;
26
- alternate: z.ZodOptional<z.ZodString>;
27
- accent: z.ZodOptional<z.ZodString>;
28
- link: z.ZodDefault<z.ZodString>;
29
- help: z.ZodDefault<z.ZodString>;
30
- success: z.ZodDefault<z.ZodString>;
31
- info: z.ZodDefault<z.ZodString>;
32
- warning: z.ZodDefault<z.ZodString>;
33
- danger: z.ZodDefault<z.ZodString>;
34
- fatal: z.ZodOptional<z.ZodString>;
35
- positive: z.ZodDefault<z.ZodString>;
36
- negative: z.ZodDefault<z.ZodString>;
37
- gradient: z.ZodOptional<z.ZodArray<z.ZodString>>;
38
- }, z.core.$strip>;
39
- }, z.core.$strip>;
40
-
41
- type MultiThemeColorConfig = z.infer<typeof MultiThemeColorConfigSchema>;
1
+ import { MultiThemeColors, StormWorkspaceConfig, Colors } from '@storm-software/config/types';
42
2
 
43
3
  /**
44
4
  * Storm theme config values used for styling various workspace elements
45
5
  */
46
- declare const DEFAULT_COLOR_CONFIG: MultiThemeColorConfig;
6
+ declare const DEFAULT_COLOR_CONFIG: MultiThemeColors;
47
7
  /**
48
8
  * Get the color configuration from the Storm workspace configuration.
49
9
  *
50
10
  * @param config - An optional, partial color configuration for the Storm workspace.
51
11
  * @returns The color configuration, or the default color configuration if not defined.
52
12
  */
53
- declare function getColorConfig(config?: Partial<Pick<StormWorkspaceConfig, "colors">>): ColorConfig;
13
+ declare function getColors(config?: Partial<Pick<StormWorkspaceConfig, "colors">>): Colors;
54
14
  /**
55
15
  * Get a specific color from the Storm workspace configuration.
56
16
  *
@@ -68,4 +28,4 @@ declare function getColor(key: "background" | "foreground" | "brand" | "help" |
68
28
  */
69
29
  declare function getGradient(config?: Partial<Pick<StormWorkspaceConfig, "colors">>): string[] | undefined;
70
30
 
71
- export { DEFAULT_COLOR_CONFIG, getColor, getColorConfig, getGradient };
31
+ export { DEFAULT_COLOR_CONFIG, getColor, getColors, getGradient };
@@ -1,56 +1,16 @@
1
- import { StormWorkspaceConfig, ColorConfig } from '@storm-software/config/types';
2
- import * as z from 'zod';
3
-
4
- declare const MultiThemeColorConfigSchema: z.ZodObject<{
5
- dark: z.ZodObject<{
6
- foreground: z.ZodDefault<z.ZodString>;
7
- background: z.ZodDefault<z.ZodString>;
8
- brand: z.ZodDefault<z.ZodString>;
9
- alternate: z.ZodOptional<z.ZodString>;
10
- accent: z.ZodOptional<z.ZodString>;
11
- link: z.ZodDefault<z.ZodString>;
12
- help: z.ZodDefault<z.ZodString>;
13
- success: z.ZodDefault<z.ZodString>;
14
- info: z.ZodDefault<z.ZodString>;
15
- warning: z.ZodDefault<z.ZodString>;
16
- danger: z.ZodDefault<z.ZodString>;
17
- fatal: z.ZodOptional<z.ZodString>;
18
- positive: z.ZodDefault<z.ZodString>;
19
- negative: z.ZodDefault<z.ZodString>;
20
- gradient: z.ZodOptional<z.ZodArray<z.ZodString>>;
21
- }, z.core.$strip>;
22
- light: z.ZodObject<{
23
- foreground: z.ZodDefault<z.ZodString>;
24
- background: z.ZodDefault<z.ZodString>;
25
- brand: z.ZodDefault<z.ZodString>;
26
- alternate: z.ZodOptional<z.ZodString>;
27
- accent: z.ZodOptional<z.ZodString>;
28
- link: z.ZodDefault<z.ZodString>;
29
- help: z.ZodDefault<z.ZodString>;
30
- success: z.ZodDefault<z.ZodString>;
31
- info: z.ZodDefault<z.ZodString>;
32
- warning: z.ZodDefault<z.ZodString>;
33
- danger: z.ZodDefault<z.ZodString>;
34
- fatal: z.ZodOptional<z.ZodString>;
35
- positive: z.ZodDefault<z.ZodString>;
36
- negative: z.ZodDefault<z.ZodString>;
37
- gradient: z.ZodOptional<z.ZodArray<z.ZodString>>;
38
- }, z.core.$strip>;
39
- }, z.core.$strip>;
40
-
41
- type MultiThemeColorConfig = z.infer<typeof MultiThemeColorConfigSchema>;
1
+ import { MultiThemeColors, StormWorkspaceConfig, Colors } from '@storm-software/config/types';
42
2
 
43
3
  /**
44
4
  * Storm theme config values used for styling various workspace elements
45
5
  */
46
- declare const DEFAULT_COLOR_CONFIG: MultiThemeColorConfig;
6
+ declare const DEFAULT_COLOR_CONFIG: MultiThemeColors;
47
7
  /**
48
8
  * Get the color configuration from the Storm workspace configuration.
49
9
  *
50
10
  * @param config - An optional, partial color configuration for the Storm workspace.
51
11
  * @returns The color configuration, or the default color configuration if not defined.
52
12
  */
53
- declare function getColorConfig(config?: Partial<Pick<StormWorkspaceConfig, "colors">>): ColorConfig;
13
+ declare function getColors(config?: Partial<Pick<StormWorkspaceConfig, "colors">>): Colors;
54
14
  /**
55
15
  * Get a specific color from the Storm workspace configuration.
56
16
  *
@@ -68,4 +28,4 @@ declare function getColor(key: "background" | "foreground" | "brand" | "help" |
68
28
  */
69
29
  declare function getGradient(config?: Partial<Pick<StormWorkspaceConfig, "colors">>): string[] | undefined;
70
30
 
71
- export { DEFAULT_COLOR_CONFIG, getColor, getColorConfig, getGradient };
31
+ export { DEFAULT_COLOR_CONFIG, getColor, getColors, getGradient };
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  DEFAULT_COLOR_CONFIG,
3
3
  getColor,
4
- getColorConfig,
4
+ getColors,
5
5
  getGradient
6
- } from "../chunk-3TO7MEJT.js";
6
+ } from "../chunk-LA3S35UI.js";
7
7
  export {
8
8
  DEFAULT_COLOR_CONFIG,
9
9
  getColor,
10
- getColorConfig,
10
+ getColors,
11
11
  getGradient
12
12
  };
@@ -5,7 +5,7 @@ import { StormWorkspaceConfig } from '@storm-software/config';
5
5
  *
6
6
  * @returns The default Storm config values
7
7
  */
8
- declare function getPackageJsonConfig(root?: string): Promise<Pick<StormWorkspaceConfig, "workspaceRoot" | "name" | "namespace" | "repository" | "license" | "homepage" | "support">>;
8
+ declare function getPackageJsonConfig(root?: string): Promise<Pick<StormWorkspaceConfig, "workspaceRoot" | "license" | "homepage" | "support"> & Partial<Pick<StormWorkspaceConfig, "name" | "namespace" | "repository">>>;
9
9
  /**
10
10
  * Apply default config values to the given config object
11
11
  *
@@ -5,7 +5,7 @@ import { StormWorkspaceConfig } from '@storm-software/config';
5
5
  *
6
6
  * @returns The default Storm config values
7
7
  */
8
- declare function getPackageJsonConfig(root?: string): Promise<Pick<StormWorkspaceConfig, "workspaceRoot" | "name" | "namespace" | "repository" | "license" | "homepage" | "support">>;
8
+ declare function getPackageJsonConfig(root?: string): Promise<Pick<StormWorkspaceConfig, "workspaceRoot" | "license" | "homepage" | "support"> & Partial<Pick<StormWorkspaceConfig, "name" | "namespace" | "repository">>>;
9
9
  /**
10
10
  * Apply default config values to the given config object
11
11
  *
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkGJ7QM6FNcjs = require('../chunk-GJ7QM6FN.cjs');
6
+ var _chunkCRQ64CT5cjs = require('../chunk-CRQ64CT5.cjs');
7
7
 
8
8
 
9
9
 
@@ -15,7 +15,7 @@ var _chunkDQT6QJRQcjs = require('../chunk-DQT6QJRQ.cjs');
15
15
 
16
16
 
17
17
 
18
- var _chunk2LK4ZGLWcjs = require('../chunk-2LK4ZGLW.cjs');
18
+ var _chunk363CTBPHcjs = require('../chunk-363CTBPH.cjs');
19
19
 
20
20
 
21
21
 
@@ -36,14 +36,14 @@ var _chunkMBEJXPRQcjs = require('../chunk-MBEJXPRQ.cjs');
36
36
  var _chunkNOTWBXXMcjs = require('../chunk-NOTWBXXM.cjs');
37
37
  require('../chunk-N3UX6L7X.cjs');
38
38
  require('../chunk-7PV6L7I7.cjs');
39
- require('../chunk-3235YC2J.cjs');
40
- require('../chunk-XA4G3MSV.cjs');
39
+ require('../chunk-ESUPAI3Y.cjs');
40
+ require('../chunk-72EOBSKW.cjs');
41
41
 
42
42
 
43
43
 
44
44
 
45
45
 
46
- var _chunkYGJGYNZLcjs = require('../chunk-YGJGYNZL.cjs');
46
+ var _chunkMKPH762Ocjs = require('../chunk-MKPH762O.cjs');
47
47
  require('../chunk-LOY6ICHZ.cjs');
48
48
  require('../chunk-WBQ4VS7E.cjs');
49
49
  require('../chunk-DTGT4OI3.cjs');
@@ -106,4 +106,4 @@ require('../chunk-IRCFHYKZ.cjs');
106
106
 
107
107
 
108
108
 
109
- exports.DEFAULT_COLOR_CONFIG = _chunkYGJGYNZLcjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; 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.dirname = _chunkM3REM2FUcjs.dirname; exports.exitWithError = _chunkGJ7QM6FNcjs.exitWithError; exports.exitWithSuccess = _chunkGJ7QM6FNcjs.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.getColor = _chunkYGJGYNZLcjs.getColor; exports.getColorConfig = _chunkYGJGYNZLcjs.getColorConfig; exports.getGradient = _chunkYGJGYNZLcjs.getGradient; exports.getPackageJsonConfig = _chunkMBEJXPRQcjs.getPackageJsonConfig; exports.handleProcess = _chunkGJ7QM6FNcjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; exports.modifyCargoNestedTable = _chunk2LK4ZGLWcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunk2LK4ZGLWcjs.modifyCargoTable; exports.normalizeString = _chunkM3REM2FUcjs.normalizeString; exports.normalizeWindowsPath = _chunkM3REM2FUcjs.normalizeWindowsPath; exports.parse = _chunkM3REM2FUcjs.parse; exports.parseCargoToml = _chunk2LK4ZGLWcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunk2LK4ZGLWcjs.parseCargoTomlWithTree; exports.relative = _chunkM3REM2FUcjs.relative; exports.removeExtension = _chunkJMI7BRL7cjs.removeExtension; exports.resolve = _chunkM3REM2FUcjs.resolve; exports.run = _chunkDQT6QJRQcjs.run; exports.runAsync = _chunkDQT6QJRQcjs.runAsync; exports.sep = _chunkM3REM2FUcjs.sep; exports.stringifyCargoToml = _chunk2LK4ZGLWcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.toNamespacedPath;
109
+ exports.DEFAULT_COLOR_CONFIG = _chunkMKPH762Ocjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunkDQT6QJRQcjs.LARGE_BUFFER; 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.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.getColor = _chunkMKPH762Ocjs.getColor; exports.getColors = _chunkMKPH762Ocjs.getColors; exports.getGradient = _chunkMKPH762Ocjs.getGradient; exports.getPackageJsonConfig = _chunkMBEJXPRQcjs.getPackageJsonConfig; exports.handleProcess = _chunkCRQ64CT5cjs.handleProcess; exports.isAbsolute = _chunkM3REM2FUcjs.isAbsolute; exports.joinPaths = _chunkM3REM2FUcjs.joinPaths; 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.stringifyCargoToml = _chunk363CTBPHcjs.stringifyCargoToml; exports.toNamespacedPath = _chunkM3REM2FUcjs.toNamespacedPath;
@@ -1,5 +1,5 @@
1
1
  export { applyWorkspaceBaseTokens, applyWorkspaceProjectTokens, applyWorkspaceTokens } from './apply-workspace-tokens.cjs';
2
- export { DEFAULT_COLOR_CONFIG, getColor, getColorConfig, getGradient } from './colors.cjs';
2
+ export { DEFAULT_COLOR_CONFIG, getColor, getColors, getGradient } from './colors.cjs';
3
3
  export { basename, correctPaths, dirname, extname, format, isAbsolute, joinPaths, normalizeString, normalizeWindowsPath, parse, relative, resolve, sep, toNamespacedPath } from './correct-paths.cjs';
4
4
  export { FindFileNameOptions, findFileName, findFilePath, removeExtension } from './file-path-utils.cjs';
5
5
  export { findWorkspaceRoot, findWorkspaceRootSafe } from './find-workspace-root.cjs';
@@ -10,6 +10,5 @@ export { CargoMetadata, CargoToml, Dep, DepKind, Dependency, Docs, Docs2, Featur
10
10
  import '../types.cjs';
11
11
  import '@storm-software/config';
12
12
  import '@storm-software/config/types';
13
- import 'zod';
14
13
  import 'node:path';
15
14
  import 'child_process';
@@ -1,5 +1,5 @@
1
1
  export { applyWorkspaceBaseTokens, applyWorkspaceProjectTokens, applyWorkspaceTokens } from './apply-workspace-tokens.js';
2
- export { DEFAULT_COLOR_CONFIG, getColor, getColorConfig, getGradient } from './colors.js';
2
+ export { DEFAULT_COLOR_CONFIG, getColor, getColors, getGradient } from './colors.js';
3
3
  export { basename, correctPaths, dirname, extname, format, isAbsolute, joinPaths, normalizeString, normalizeWindowsPath, parse, relative, resolve, sep, toNamespacedPath } from './correct-paths.js';
4
4
  export { FindFileNameOptions, findFileName, findFilePath, removeExtension } from './file-path-utils.js';
5
5
  export { findWorkspaceRoot, findWorkspaceRootSafe } from './find-workspace-root.js';
@@ -10,6 +10,5 @@ export { CargoMetadata, CargoToml, Dep, DepKind, Dependency, Docs, Docs2, Featur
10
10
  import '../types.js';
11
11
  import '@storm-software/config';
12
12
  import '@storm-software/config/types';
13
- import 'zod';
14
13
  import 'node:path';
15
14
  import 'child_process';
@@ -3,7 +3,7 @@ import {
3
3
  exitWithError,
4
4
  exitWithSuccess,
5
5
  handleProcess
6
- } from "../chunk-X56PD6LB.js";
6
+ } from "../chunk-FVKBGSDE.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-BTZVY4J2.js";
18
+ } from "../chunk-L72FV3TP.js";
19
19
  import {
20
20
  applyWorkspaceBaseTokens,
21
21
  applyWorkspaceProjectTokens,
@@ -36,14 +36,14 @@ import {
36
36
  } from "../chunk-SZXSPLS6.js";
37
37
  import "../chunk-6JBGUE4A.js";
38
38
  import "../chunk-RRKB32OH.js";
39
- import "../chunk-TTT5G3NU.js";
40
- import "../chunk-EK7IXIHA.js";
39
+ import "../chunk-BCAYP4JB.js";
40
+ import "../chunk-7L77OWOV.js";
41
41
  import {
42
42
  DEFAULT_COLOR_CONFIG,
43
43
  getColor,
44
- getColorConfig,
44
+ getColors,
45
45
  getGradient
46
- } from "../chunk-3TO7MEJT.js";
46
+ } from "../chunk-LA3S35UI.js";
47
47
  import "../chunk-HVVJHTFS.js";
48
48
  import "../chunk-LM2UMGYA.js";
49
49
  import "../chunk-G2MK47WL.js";
@@ -85,7 +85,7 @@ export {
85
85
  findWorkspaceRootSafe,
86
86
  format,
87
87
  getColor,
88
- getColorConfig,
88
+ getColors,
89
89
  getGradient,
90
90
  getPackageJsonConfig,
91
91
  handleProcess,
@@ -2,9 +2,9 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkGJ7QM6FNcjs = require('../chunk-GJ7QM6FN.cjs');
6
- require('../chunk-XA4G3MSV.cjs');
7
- require('../chunk-YGJGYNZL.cjs');
5
+ var _chunkCRQ64CT5cjs = require('../chunk-CRQ64CT5.cjs');
6
+ require('../chunk-72EOBSKW.cjs');
7
+ require('../chunk-MKPH762O.cjs');
8
8
  require('../chunk-LOY6ICHZ.cjs');
9
9
  require('../chunk-WBQ4VS7E.cjs');
10
10
  require('../chunk-DTGT4OI3.cjs');
@@ -15,4 +15,4 @@ require('../chunk-IRCFHYKZ.cjs');
15
15
 
16
16
 
17
17
 
18
- exports.exitWithError = _chunkGJ7QM6FNcjs.exitWithError; exports.exitWithSuccess = _chunkGJ7QM6FNcjs.exitWithSuccess; exports.handleProcess = _chunkGJ7QM6FNcjs.handleProcess;
18
+ exports.exitWithError = _chunkCRQ64CT5cjs.exitWithError; exports.exitWithSuccess = _chunkCRQ64CT5cjs.exitWithSuccess; exports.handleProcess = _chunkCRQ64CT5cjs.handleProcess;
@@ -2,9 +2,9 @@ import {
2
2
  exitWithError,
3
3
  exitWithSuccess,
4
4
  handleProcess
5
- } from "../chunk-X56PD6LB.js";
6
- import "../chunk-EK7IXIHA.js";
7
- import "../chunk-3TO7MEJT.js";
5
+ } from "../chunk-FVKBGSDE.js";
6
+ import "../chunk-7L77OWOV.js";
7
+ import "../chunk-LA3S35UI.js";
8
8
  import "../chunk-HVVJHTFS.js";
9
9
  import "../chunk-LM2UMGYA.js";
10
10
  import "../chunk-G2MK47WL.js";
@@ -4,11 +4,11 @@
4
4
 
5
5
 
6
6
 
7
- var _chunk2LK4ZGLWcjs = require('../chunk-2LK4ZGLW.cjs');
7
+ var _chunk363CTBPHcjs = require('../chunk-363CTBPH.cjs');
8
8
  require('../chunk-7PV6L7I7.cjs');
9
- require('../chunk-3235YC2J.cjs');
10
- require('../chunk-XA4G3MSV.cjs');
11
- require('../chunk-YGJGYNZL.cjs');
9
+ require('../chunk-ESUPAI3Y.cjs');
10
+ require('../chunk-72EOBSKW.cjs');
11
+ require('../chunk-MKPH762O.cjs');
12
12
  require('../chunk-LOY6ICHZ.cjs');
13
13
  require('../chunk-WBQ4VS7E.cjs');
14
14
  require('../chunk-DTGT4OI3.cjs');
@@ -21,4 +21,4 @@ require('../chunk-IRCFHYKZ.cjs');
21
21
 
22
22
 
23
23
 
24
- exports.modifyCargoNestedTable = _chunk2LK4ZGLWcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunk2LK4ZGLWcjs.modifyCargoTable; exports.parseCargoToml = _chunk2LK4ZGLWcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunk2LK4ZGLWcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunk2LK4ZGLWcjs.stringifyCargoToml;
24
+ exports.modifyCargoNestedTable = _chunk363CTBPHcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunk363CTBPHcjs.modifyCargoTable; exports.parseCargoToml = _chunk363CTBPHcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunk363CTBPHcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunk363CTBPHcjs.stringifyCargoToml;
@@ -4,11 +4,11 @@ import {
4
4
  parseCargoToml,
5
5
  parseCargoTomlWithTree,
6
6
  stringifyCargoToml
7
- } from "../chunk-BTZVY4J2.js";
7
+ } from "../chunk-L72FV3TP.js";
8
8
  import "../chunk-RRKB32OH.js";
9
- import "../chunk-TTT5G3NU.js";
10
- import "../chunk-EK7IXIHA.js";
11
- import "../chunk-3TO7MEJT.js";
9
+ import "../chunk-BCAYP4JB.js";
10
+ import "../chunk-7L77OWOV.js";
11
+ import "../chunk-LA3S35UI.js";
12
12
  import "../chunk-HVVJHTFS.js";
13
13
  import "../chunk-LM2UMGYA.js";
14
14
  import "../chunk-G2MK47WL.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.178.7",
3
+ "version": "1.180.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.126.11",
214
+ "@storm-software/config": "^1.128.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": "4468c724d9bcbd9d59abbe56d856277bdd524b6e"
227
+ "gitHead": "6a6dd784f46be577947b206ab5e38654a85140e2"
228
228
  }