@storm-software/git-tools 2.124.59 → 2.124.61
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/{chunk-UKNYCUVS.js → chunk-TMQCIJTZ.js} +7 -7
- package/bin/chunk-TMQCIJTZ.js.map +1 -0
- package/bin/{chunk-NUGDUPXJ.cjs → chunk-YBTSEKHW.cjs} +7 -7
- package/bin/chunk-YBTSEKHW.cjs.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-D2BA7VDM.cjs → chunk-73HIS2A2.cjs} +5 -5
- package/dist/{chunk-IZFUY6XB.js → chunk-PFHNJI5V.js} +5 -5
- 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 +4 -4
- package/bin/chunk-NUGDUPXJ.cjs.map +0 -1
- package/bin/chunk-UKNYCUVS.js.map +0 -1
|
@@ -98,12 +98,12 @@ function isUnicodeSupported() {
|
|
|
98
98
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
99
99
|
var CONSOLE_ICONS = {
|
|
100
100
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
101
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
101
|
+
[LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
|
|
102
102
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
103
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
103
|
+
[LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
|
|
104
104
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
105
105
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
106
|
-
[LogLevelLabel.TRACE]: useIcon("\
|
|
106
|
+
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
107
107
|
[LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
|
|
108
108
|
};
|
|
109
109
|
|
|
@@ -224,7 +224,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
224
224
|
return (message) => {
|
|
225
225
|
console.debug(
|
|
226
226
|
`
|
|
227
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.
|
|
227
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
228
228
|
`
|
|
229
229
|
);
|
|
230
230
|
};
|
|
@@ -233,7 +233,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
|
|
|
233
233
|
return (message) => {
|
|
234
234
|
console.debug(
|
|
235
235
|
`
|
|
236
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
236
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
237
237
|
`
|
|
238
238
|
);
|
|
239
239
|
};
|
|
@@ -3812,5 +3812,5 @@ exports.writeInfo = writeInfo;
|
|
|
3812
3812
|
exports.writeSuccess = writeSuccess;
|
|
3813
3813
|
exports.writeTrace = writeTrace;
|
|
3814
3814
|
exports.writeWarning = writeWarning;
|
|
3815
|
-
//# sourceMappingURL=chunk-
|
|
3816
|
-
//# sourceMappingURL=chunk-
|
|
3815
|
+
//# sourceMappingURL=chunk-YBTSEKHW.cjs.map
|
|
3816
|
+
//# sourceMappingURL=chunk-YBTSEKHW.cjs.map
|