@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
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -46,7 +46,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
46
46
|
|
|
47
47
|
<!-- START doctoc -->
|
|
48
48
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
49
|
-
|
|
50
49
|
## Table of Contents
|
|
51
50
|
|
|
52
51
|
- [Storm Git Tools](#storm-git-tools)
|
|
@@ -47,6 +47,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
47
47
|
brand: "#2dd4bf",
|
|
48
48
|
success: "#10b981",
|
|
49
49
|
info: "#58a6ff",
|
|
50
|
+
debug: "#8afafc",
|
|
50
51
|
warning: "#f3d371",
|
|
51
52
|
danger: "#D8314A",
|
|
52
53
|
fatal: "#a40e26"}
|
|
@@ -223,7 +224,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
223
224
|
return (message) => {
|
|
224
225
|
console.debug(
|
|
225
226
|
`
|
|
226
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.
|
|
227
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
227
228
|
`
|
|
228
229
|
);
|
|
229
230
|
};
|
|
@@ -232,7 +233,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
232
233
|
return (message) => {
|
|
233
234
|
console.debug(
|
|
234
235
|
`
|
|
235
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.
|
|
236
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
236
237
|
`
|
|
237
238
|
);
|
|
238
239
|
};
|
|
@@ -2174,6 +2175,10 @@ var infoColorSchema = _default(colorSchema, "#38bdf8");
|
|
|
2174
2175
|
schemaRegistry.add(infoColorSchema, {
|
|
2175
2176
|
description: "The informational color of the workspace"
|
|
2176
2177
|
});
|
|
2178
|
+
var debugColorSchema = _default(colorSchema, "#8afafc");
|
|
2179
|
+
schemaRegistry.add(debugColorSchema, {
|
|
2180
|
+
description: "The debug color of the workspace"
|
|
2181
|
+
});
|
|
2177
2182
|
var warningColorSchema = _default(colorSchema, "#f3d371");
|
|
2178
2183
|
schemaRegistry.add(warningColorSchema, {
|
|
2179
2184
|
description: "The warning color of the workspace"
|
|
@@ -2208,6 +2213,7 @@ var darkColorsSchema = object({
|
|
|
2208
2213
|
help: helpColorSchema,
|
|
2209
2214
|
success: successColorSchema,
|
|
2210
2215
|
info: infoColorSchema,
|
|
2216
|
+
debug: debugColorSchema,
|
|
2211
2217
|
warning: warningColorSchema,
|
|
2212
2218
|
danger: dangerColorSchema,
|
|
2213
2219
|
fatal: fatalColorSchema,
|
|
@@ -2225,6 +2231,7 @@ var lightColorsSchema = object({
|
|
|
2225
2231
|
help: helpColorSchema,
|
|
2226
2232
|
success: successColorSchema,
|
|
2227
2233
|
info: infoColorSchema,
|
|
2234
|
+
debug: debugColorSchema,
|
|
2228
2235
|
warning: warningColorSchema,
|
|
2229
2236
|
danger: dangerColorSchema,
|
|
2230
2237
|
fatal: fatalColorSchema,
|
|
@@ -2246,6 +2253,7 @@ var singleColorsSchema = object({
|
|
|
2246
2253
|
help: helpColorSchema,
|
|
2247
2254
|
success: successColorSchema,
|
|
2248
2255
|
info: infoColorSchema,
|
|
2256
|
+
debug: debugColorSchema,
|
|
2249
2257
|
warning: warningColorSchema,
|
|
2250
2258
|
danger: dangerColorSchema,
|
|
2251
2259
|
fatal: fatalColorSchema,
|
|
@@ -3277,6 +3285,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
3277
3285
|
help: process.env[`${prefix}HELP`],
|
|
3278
3286
|
success: process.env[`${prefix}SUCCESS`],
|
|
3279
3287
|
info: process.env[`${prefix}INFO`],
|
|
3288
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
3280
3289
|
warning: process.env[`${prefix}WARNING`],
|
|
3281
3290
|
danger: process.env[`${prefix}DANGER`],
|
|
3282
3291
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -3315,6 +3324,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
3315
3324
|
help: process.env[`${prefix}HELP`],
|
|
3316
3325
|
success: process.env[`${prefix}SUCCESS`],
|
|
3317
3326
|
info: process.env[`${prefix}INFO`],
|
|
3327
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
3318
3328
|
warning: process.env[`${prefix}WARNING`],
|
|
3319
3329
|
danger: process.env[`${prefix}DANGER`],
|
|
3320
3330
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -3616,6 +3626,9 @@ var setSingleThemeColorsEnv = (prefix, config2) => {
|
|
|
3616
3626
|
if (config2.info) {
|
|
3617
3627
|
process.env[`${prefix}INFO`] = config2.info;
|
|
3618
3628
|
}
|
|
3629
|
+
if (config2.debug) {
|
|
3630
|
+
process.env[`${prefix}DEBUG`] = config2.debug;
|
|
3631
|
+
}
|
|
3619
3632
|
if (config2.warning) {
|
|
3620
3633
|
process.env[`${prefix}WARNING`] = config2.warning;
|
|
3621
3634
|
}
|
|
@@ -3671,6 +3684,9 @@ var setBaseThemeColorsEnv = (prefix, config2) => {
|
|
|
3671
3684
|
if (config2.info) {
|
|
3672
3685
|
process.env[`${prefix}INFO`] = config2.info;
|
|
3673
3686
|
}
|
|
3687
|
+
if (config2.debug) {
|
|
3688
|
+
process.env[`${prefix}DEBUG`] = config2.debug;
|
|
3689
|
+
}
|
|
3674
3690
|
if (config2.warning) {
|
|
3675
3691
|
process.env[`${prefix}WARNING`] = config2.warning;
|
|
3676
3692
|
}
|
|
@@ -3796,5 +3812,5 @@ exports.writeInfo = writeInfo;
|
|
|
3796
3812
|
exports.writeSuccess = writeSuccess;
|
|
3797
3813
|
exports.writeTrace = writeTrace;
|
|
3798
3814
|
exports.writeWarning = writeWarning;
|
|
3799
|
-
//# sourceMappingURL=chunk-
|
|
3800
|
-
//# sourceMappingURL=chunk-
|
|
3815
|
+
//# sourceMappingURL=chunk-NUGDUPXJ.cjs.map
|
|
3816
|
+
//# sourceMappingURL=chunk-NUGDUPXJ.cjs.map
|