@storm-software/git-tools 2.124.57 → 2.124.59
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 +1 -2
- package/bin/{chunk-3PQ6YKQX.cjs → chunk-NUGDUPXJ.cjs} +20 -4
- package/bin/chunk-NUGDUPXJ.cjs.map +1 -0
- package/bin/{chunk-GMMJM4AI.js → chunk-UKNYCUVS.js} +20 -4
- package/bin/chunk-UKNYCUVS.js.map +1 -0
- package/bin/git.cjs +75 -75
- package/bin/git.js +1 -1
- package/bin/post-checkout.cjs +9 -9
- package/bin/post-checkout.js +1 -1
- package/bin/post-commit.cjs +9 -9
- package/bin/post-commit.js +1 -1
- package/bin/post-merge.cjs +9 -9
- package/bin/post-merge.js +1 -1
- package/bin/pre-commit.cjs +9 -9
- package/bin/pre-commit.js +1 -1
- package/bin/pre-install.cjs +9 -9
- package/bin/pre-install.js +1 -1
- package/bin/pre-push.cjs +13 -13
- package/bin/pre-push.js +1 -1
- package/bin/prepare.cjs +7 -7
- package/bin/prepare.js +1 -1
- package/bin/version-warning.cjs +5 -5
- package/bin/version-warning.js +1 -1
- package/dist/{chunk-PI2QGROD.cjs → chunk-D2BA7VDM.cjs} +18 -2
- package/dist/{chunk-ZWBINQV3.js → chunk-IZFUY6XB.js} +18 -2
- package/dist/index.cjs +8 -8
- package/dist/index.js +1 -1
- package/dist/release/config.cjs +8 -8
- package/dist/release/config.js +1 -1
- package/package.json +5 -5
- package/bin/chunk-3PQ6YKQX.cjs.map +0 -1
- package/bin/chunk-GMMJM4AI.js.map +0 -1
|
@@ -41,6 +41,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
41
41
|
brand: "#2dd4bf",
|
|
42
42
|
success: "#10b981",
|
|
43
43
|
info: "#58a6ff",
|
|
44
|
+
debug: "#8afafc",
|
|
44
45
|
warning: "#f3d371",
|
|
45
46
|
danger: "#D8314A",
|
|
46
47
|
fatal: "#a40e26"}
|
|
@@ -217,7 +218,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
217
218
|
return (message) => {
|
|
218
219
|
console.debug(
|
|
219
220
|
`
|
|
220
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.
|
|
221
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
221
222
|
`
|
|
222
223
|
);
|
|
223
224
|
};
|
|
@@ -226,7 +227,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
226
227
|
return (message) => {
|
|
227
228
|
console.debug(
|
|
228
229
|
`
|
|
229
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.
|
|
230
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
230
231
|
`
|
|
231
232
|
);
|
|
232
233
|
};
|
|
@@ -2168,6 +2169,10 @@ var infoColorSchema = _default(colorSchema, "#38bdf8");
|
|
|
2168
2169
|
schemaRegistry.add(infoColorSchema, {
|
|
2169
2170
|
description: "The informational color of the workspace"
|
|
2170
2171
|
});
|
|
2172
|
+
var debugColorSchema = _default(colorSchema, "#8afafc");
|
|
2173
|
+
schemaRegistry.add(debugColorSchema, {
|
|
2174
|
+
description: "The debug color of the workspace"
|
|
2175
|
+
});
|
|
2171
2176
|
var warningColorSchema = _default(colorSchema, "#f3d371");
|
|
2172
2177
|
schemaRegistry.add(warningColorSchema, {
|
|
2173
2178
|
description: "The warning color of the workspace"
|
|
@@ -2202,6 +2207,7 @@ var darkColorsSchema = object({
|
|
|
2202
2207
|
help: helpColorSchema,
|
|
2203
2208
|
success: successColorSchema,
|
|
2204
2209
|
info: infoColorSchema,
|
|
2210
|
+
debug: debugColorSchema,
|
|
2205
2211
|
warning: warningColorSchema,
|
|
2206
2212
|
danger: dangerColorSchema,
|
|
2207
2213
|
fatal: fatalColorSchema,
|
|
@@ -2219,6 +2225,7 @@ var lightColorsSchema = object({
|
|
|
2219
2225
|
help: helpColorSchema,
|
|
2220
2226
|
success: successColorSchema,
|
|
2221
2227
|
info: infoColorSchema,
|
|
2228
|
+
debug: debugColorSchema,
|
|
2222
2229
|
warning: warningColorSchema,
|
|
2223
2230
|
danger: dangerColorSchema,
|
|
2224
2231
|
fatal: fatalColorSchema,
|
|
@@ -2240,6 +2247,7 @@ var singleColorsSchema = object({
|
|
|
2240
2247
|
help: helpColorSchema,
|
|
2241
2248
|
success: successColorSchema,
|
|
2242
2249
|
info: infoColorSchema,
|
|
2250
|
+
debug: debugColorSchema,
|
|
2243
2251
|
warning: warningColorSchema,
|
|
2244
2252
|
danger: dangerColorSchema,
|
|
2245
2253
|
fatal: fatalColorSchema,
|
|
@@ -3271,6 +3279,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
3271
3279
|
help: process.env[`${prefix}HELP`],
|
|
3272
3280
|
success: process.env[`${prefix}SUCCESS`],
|
|
3273
3281
|
info: process.env[`${prefix}INFO`],
|
|
3282
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
3274
3283
|
warning: process.env[`${prefix}WARNING`],
|
|
3275
3284
|
danger: process.env[`${prefix}DANGER`],
|
|
3276
3285
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -3309,6 +3318,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
3309
3318
|
help: process.env[`${prefix}HELP`],
|
|
3310
3319
|
success: process.env[`${prefix}SUCCESS`],
|
|
3311
3320
|
info: process.env[`${prefix}INFO`],
|
|
3321
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
3312
3322
|
warning: process.env[`${prefix}WARNING`],
|
|
3313
3323
|
danger: process.env[`${prefix}DANGER`],
|
|
3314
3324
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -3610,6 +3620,9 @@ var setSingleThemeColorsEnv = (prefix, config2) => {
|
|
|
3610
3620
|
if (config2.info) {
|
|
3611
3621
|
process.env[`${prefix}INFO`] = config2.info;
|
|
3612
3622
|
}
|
|
3623
|
+
if (config2.debug) {
|
|
3624
|
+
process.env[`${prefix}DEBUG`] = config2.debug;
|
|
3625
|
+
}
|
|
3613
3626
|
if (config2.warning) {
|
|
3614
3627
|
process.env[`${prefix}WARNING`] = config2.warning;
|
|
3615
3628
|
}
|
|
@@ -3665,6 +3678,9 @@ var setBaseThemeColorsEnv = (prefix, config2) => {
|
|
|
3665
3678
|
if (config2.info) {
|
|
3666
3679
|
process.env[`${prefix}INFO`] = config2.info;
|
|
3667
3680
|
}
|
|
3681
|
+
if (config2.debug) {
|
|
3682
|
+
process.env[`${prefix}DEBUG`] = config2.debug;
|
|
3683
|
+
}
|
|
3668
3684
|
if (config2.warning) {
|
|
3669
3685
|
process.env[`${prefix}WARNING`] = config2.warning;
|
|
3670
3686
|
}
|
|
@@ -3774,5 +3790,5 @@ function getWorkspaceConfig(skipLogs = true, options = {}) {
|
|
|
3774
3790
|
}
|
|
3775
3791
|
|
|
3776
3792
|
export { STORM_DEFAULT_RELEASE_BANNER, defu, exitWithError, exitWithSuccess, findWorkspaceRootSafe, getConfig, getWorkspaceConfig, handleProcess, isVerbose, joinPaths, writeDebug, writeError, writeFatal, writeInfo, writeSuccess, writeTrace, writeWarning };
|
|
3777
|
-
//# sourceMappingURL=chunk-
|
|
3778
|
-
//# sourceMappingURL=chunk-
|
|
3793
|
+
//# sourceMappingURL=chunk-UKNYCUVS.js.map
|
|
3794
|
+
//# sourceMappingURL=chunk-UKNYCUVS.js.map
|