@storm-software/config-tools 1.190.11 → 1.190.14
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/bin/config.cjs +17 -8
- package/bin/config.js +17 -8
- package/dist/{chunk-S22A75II.cjs → chunk-44SHQAD4.cjs} +10 -10
- package/dist/{chunk-TOMKPXJE.js → chunk-4UFIHIMZ.js} +17 -8
- package/dist/{chunk-7KE7OYDW.js → chunk-5NAMOQCY.js} +1 -1
- package/dist/{chunk-DZS54O6N.cjs → chunk-AZJQFL6W.cjs} +17 -8
- package/dist/{chunk-PAQH5U2F.cjs → chunk-DFWIRJGH.cjs} +3 -3
- package/dist/{chunk-KOSKDPTM.cjs → chunk-EB63U2GG.cjs} +3 -3
- package/dist/{chunk-ORVHSCSN.js → chunk-FXQGOFJI.js} +1 -1
- package/dist/chunk-KRVACLYZ.cjs +40 -0
- package/dist/{chunk-CZGO7WY3.js → chunk-M7RUDRDH.js} +1 -1
- package/dist/{chunk-PN7H7GUE.js → chunk-MOXINQRL.js} +1 -1
- package/dist/{chunk-EEPODKNE.cjs → chunk-OLW3Y2DA.cjs} +14 -14
- package/dist/chunk-QXMSQMVN.cjs +165 -0
- package/dist/{chunk-HUQ5Y2QK.cjs → chunk-R5BZDTQW.cjs} +2 -2
- package/dist/chunk-TIH4RSTL.js +40 -0
- package/dist/{chunk-6IBSNO2S.cjs → chunk-TW273ZN4.cjs} +9 -9
- package/dist/{chunk-KVDT6KNS.js → chunk-UWI3QVYJ.js} +2 -2
- package/dist/chunk-UZBUUPX4.js +165 -0
- package/dist/{chunk-KLUNEHDC.js → chunk-VEYONVTU.js} +1 -1
- package/dist/config-file/get-config-file.cjs +6 -6
- package/dist/config-file/get-config-file.js +5 -5
- package/dist/config-file/index.cjs +6 -6
- package/dist/config-file/index.js +5 -5
- package/dist/create-storm-config.cjs +7 -7
- package/dist/create-storm-config.js +6 -6
- package/dist/get-config.cjs +8 -8
- package/dist/get-config.js +7 -7
- package/dist/index.cjs +8 -8
- package/dist/index.js +7 -7
- package/dist/logger/console.cjs +2 -2
- package/dist/logger/console.d.cts +9 -0
- package/dist/logger/console.d.ts +9 -0
- package/dist/logger/console.js +1 -1
- package/dist/logger/create-logger.cjs +3 -3
- package/dist/logger/create-logger.js +2 -2
- package/dist/logger/index.cjs +3 -3
- package/dist/logger/index.js +2 -2
- package/dist/utilities/index.cjs +5 -5
- package/dist/utilities/index.js +4 -4
- package/dist/utilities/process-handler.cjs +3 -3
- package/dist/utilities/process-handler.js +2 -2
- package/dist/utilities/toml.cjs +4 -4
- package/dist/utilities/toml.js +3 -3
- package/package.json +4 -4
package/dist/logger/console.d.ts
CHANGED
|
@@ -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
|
package/dist/logger/console.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
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 =
|
|
14
|
+
exports.createLogger = _chunk44SHQAD4cjs.createLogger;
|
package/dist/logger/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-7PV6L7I7.cjs');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
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
|
|
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 =
|
|
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;
|
package/dist/logger/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../chunk-RRKB32OH.js";
|
|
2
2
|
import {
|
|
3
3
|
createLogger
|
|
4
|
-
} from "../chunk-
|
|
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-
|
|
19
|
+
} from "../chunk-4UFIHIMZ.js";
|
|
20
20
|
import "../chunk-5DQF4GNF.js";
|
|
21
21
|
import {
|
|
22
22
|
getChalk
|
package/dist/utilities/index.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
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
|
|
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-
|
|
40
|
-
require('../chunk-
|
|
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 =
|
|
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;
|
package/dist/utilities/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
exitWithError,
|
|
4
4
|
exitWithSuccess,
|
|
5
5
|
handleProcess
|
|
6
|
-
} from "../chunk-
|
|
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-
|
|
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-
|
|
40
|
-
import "../chunk-
|
|
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
|
|
6
|
-
require('../chunk-
|
|
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 =
|
|
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-
|
|
6
|
-
import "../chunk-
|
|
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";
|
package/dist/utilities/toml.cjs
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkR5BZDTQWcjs = require('../chunk-R5BZDTQW.cjs');
|
|
8
8
|
require('../chunk-7PV6L7I7.cjs');
|
|
9
|
-
require('../chunk-
|
|
10
|
-
require('../chunk-
|
|
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 =
|
|
24
|
+
exports.modifyCargoNestedTable = _chunkR5BZDTQWcjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkR5BZDTQWcjs.modifyCargoTable; exports.parseCargoToml = _chunkR5BZDTQWcjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkR5BZDTQWcjs.parseCargoTomlWithTree; exports.stringifyCargoToml = _chunkR5BZDTQWcjs.stringifyCargoToml;
|
package/dist/utilities/toml.js
CHANGED
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
parseCargoToml,
|
|
5
5
|
parseCargoTomlWithTree,
|
|
6
6
|
stringifyCargoToml
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-VEYONVTU.js";
|
|
8
8
|
import "../chunk-RRKB32OH.js";
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
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.
|
|
3
|
+
"version": "1.190.14",
|
|
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.
|
|
215
|
+
"@storm-software/config": "^1.137.46",
|
|
216
216
|
"c12": "^2.0.4",
|
|
217
217
|
"chalk": "^4.1.2",
|
|
218
218
|
"commander": "^12.1.0",
|
|
@@ -223,12 +223,12 @@
|
|
|
223
223
|
"sqlite": "^5.1.1"
|
|
224
224
|
},
|
|
225
225
|
"devDependencies": {
|
|
226
|
-
"@types/node": "^25.
|
|
226
|
+
"@types/node": "^25.8.0",
|
|
227
227
|
"tsup": "8.4.0",
|
|
228
228
|
"zod": "^4.4.3"
|
|
229
229
|
},
|
|
230
230
|
"peerDependencies": { "zod": "^3.25.0 || ^4.0.0" },
|
|
231
231
|
"peerDependenciesMeta": { "zod": { "optional": false } },
|
|
232
232
|
"publishConfig": { "access": "public" },
|
|
233
|
-
"gitHead": "
|
|
233
|
+
"gitHead": "0c334cad4cd3237b830127698face8e1f4f508fb"
|
|
234
234
|
}
|