@storm-software/git-tools 2.124.58 → 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.
@@ -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.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
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.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
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-3PQ6YKQX.cjs.map
3800
- //# sourceMappingURL=chunk-3PQ6YKQX.cjs.map
3815
+ //# sourceMappingURL=chunk-NUGDUPXJ.cjs.map
3816
+ //# sourceMappingURL=chunk-NUGDUPXJ.cjs.map