@storm-software/workspace-tools 1.43.15 → 1.43.17

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.
@@ -16158,14 +16158,14 @@ var require_share = __commonJS({
16158
16158
  resetConnection === null || resetConnection === void 0 ? void 0 : resetConnection.unsubscribe();
16159
16159
  resetConnection = void 0;
16160
16160
  };
16161
- var reset2 = function() {
16161
+ var reset = function() {
16162
16162
  cancelReset();
16163
16163
  connection = subject = void 0;
16164
16164
  hasCompleted = hasErrored = false;
16165
16165
  };
16166
16166
  var resetAndUnsubscribe = function() {
16167
16167
  var conn = connection;
16168
- reset2();
16168
+ reset();
16169
16169
  conn === null || conn === void 0 ? void 0 : conn.unsubscribe();
16170
16170
  };
16171
16171
  return lift_1.operate(function(source, subscriber) {
@@ -16189,13 +16189,13 @@ var require_share = __commonJS({
16189
16189
  error: function(err) {
16190
16190
  hasErrored = true;
16191
16191
  cancelReset();
16192
- resetConnection = handleReset(reset2, resetOnError, err);
16192
+ resetConnection = handleReset(reset, resetOnError, err);
16193
16193
  dest.error(err);
16194
16194
  },
16195
16195
  complete: function() {
16196
16196
  hasCompleted = true;
16197
16197
  cancelReset();
16198
- resetConnection = handleReset(reset2, resetOnComplete);
16198
+ resetConnection = handleReset(reset, resetOnComplete);
16199
16199
  dest.complete();
16200
16200
  }
16201
16201
  });
@@ -16205,13 +16205,13 @@ var require_share = __commonJS({
16205
16205
  };
16206
16206
  }
16207
16207
  exports.share = share;
16208
- function handleReset(reset2, on) {
16208
+ function handleReset(reset, on) {
16209
16209
  var args = [];
16210
16210
  for (var _i = 2; _i < arguments.length; _i++) {
16211
16211
  args[_i - 2] = arguments[_i];
16212
16212
  }
16213
16213
  if (on === true) {
16214
- reset2();
16214
+ reset();
16215
16215
  return;
16216
16216
  }
16217
16217
  if (on === false) {
@@ -16220,7 +16220,7 @@ var require_share = __commonJS({
16220
16220
  var onSubscriber = new Subscriber_1.SafeSubscriber({
16221
16221
  next: function() {
16222
16222
  onSubscriber.unsubscribe();
16223
- reset2();
16223
+ reset();
16224
16224
  }
16225
16225
  });
16226
16226
  return innerFrom_1.innerFrom(on.apply(void 0, __spreadArray2([], __read2(args)))).subscribe(onSubscriber);
@@ -28102,7 +28102,7 @@ var require_array = __commonJS({
28102
28102
  parent.enabled = choices.every((ch) => ch.enabled === true);
28103
28103
  parent = parent.parent;
28104
28104
  }
28105
- reset2(this, this.choices);
28105
+ reset(this, this.choices);
28106
28106
  this.emit("toggle", choice, this);
28107
28107
  return choice;
28108
28108
  }
@@ -28400,7 +28400,7 @@ var require_array = __commonJS({
28400
28400
  }
28401
28401
  }
28402
28402
  get choices() {
28403
- return reset2(this, this.state.choices || []);
28403
+ return reset(this, this.state.choices || []);
28404
28404
  }
28405
28405
  set visible(visible) {
28406
28406
  this.state.visible = visible;
@@ -28448,7 +28448,7 @@ var require_array = __commonJS({
28448
28448
  return this.multiple ? this.enabled : this.focused;
28449
28449
  }
28450
28450
  };
28451
- function reset2(prompt, choices) {
28451
+ function reset(prompt, choices) {
28452
28452
  if (choices instanceof Promise)
28453
28453
  return choices;
28454
28454
  if (typeof choices === "function") {
@@ -47329,14 +47329,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47329
47329
  return (message) => {
47330
47330
  console.error(
47331
47331
  `
47332
-
47333
-
47334
- ${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(
47335
- ">"
47336
- )} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.reset.hex(
47332
+ ${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.hex(
47337
47333
  config?.colors?.fatal ? config.colors.fatal : "#1fb2a6"
47338
- )(message)}
47339
-
47334
+ )(message)}
47340
47335
 
47341
47336
  `
47342
47337
  );
@@ -47346,15 +47341,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47346
47341
  return (message) => {
47347
47342
  console.error(
47348
47343
  `
47349
-
47350
-
47351
- ${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(
47352
- ">"
47353
- )} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.reset.hex(
47344
+ ${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(">")} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.hex(
47354
47345
  config?.colors?.error ? config.colors.error : "#7d1a1a"
47355
- )(message)}
47356
-
47357
-
47346
+ )(message)}
47358
47347
  `
47359
47348
  );
47360
47349
  };
@@ -47363,15 +47352,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47363
47352
  return (message) => {
47364
47353
  console.warn(
47365
47354
  `
47366
-
47367
-
47368
- ${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(
47369
- ">"
47370
- )} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
47355
+ ${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(">")} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.hex(
47371
47356
  config?.colors?.warning ? config.colors.warning : "#fcc419"
47372
- )(message)}
47373
-
47374
-
47357
+ )(message)}
47375
47358
  `
47376
47359
  );
47377
47360
  };
@@ -47380,15 +47363,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47380
47363
  return (message) => {
47381
47364
  console.info(
47382
47365
  `
47383
-
47384
-
47385
- ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(
47386
- ">"
47387
- )} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.reset.hex(
47366
+ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.hex(
47388
47367
  config?.colors?.info ? config.colors.info : "#0ea5e9"
47389
- )(message)}
47390
-
47391
-
47368
+ )(message)}
47392
47369
  `
47393
47370
  );
47394
47371
  };
@@ -47397,15 +47374,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47397
47374
  return (message) => {
47398
47375
  console.info(
47399
47376
  `
47400
-
47401
-
47402
- ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(
47403
- ">"
47404
- )} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.reset.hex(
47377
+ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.hex(
47405
47378
  config?.colors?.success ? config.colors.success : "#087f5b"
47406
- )(message)}
47407
-
47408
-
47379
+ )(message)}
47409
47380
  `
47410
47381
  );
47411
47382
  };
@@ -47414,15 +47385,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47414
47385
  return (message) => {
47415
47386
  console.debug(
47416
47387
  `
47417
-
47418
-
47419
- ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
47420
- ">"
47421
- )} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.reset.hex(
47388
+ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.hex(
47422
47389
  config?.colors?.primary ? config.colors.primary : "#1fb2a6"
47423
- )(message)}
47424
-
47425
-
47390
+ )(message)}
47426
47391
  `
47427
47392
  );
47428
47393
  };
@@ -47430,15 +47395,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47430
47395
  return (message) => {
47431
47396
  console.log(
47432
47397
  `
47433
-
47434
-
47435
- ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
47436
- ">"
47437
- )} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.bold.hex(
47398
+ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.hex(
47438
47399
  config?.colors?.primary ? config.colors.primary : "#1fb2a6"
47439
- )(message)}
47440
-
47441
-
47400
+ )(message)}
47442
47401
  `
47443
47402
  );
47444
47403
  };
@@ -47661,12 +47620,12 @@ var loadStormConfig = async (workspaceRoot) => {
47661
47620
  if (key === "colors") {
47662
47621
  configFile.colors = {
47663
47622
  primary: process.env.STORM_COLOR_PRIMARY ?? configFile.colors?.primary,
47664
- background: process.env.STORM_COLOR_BACKGROUND ?? configFile.colors?.primary,
47665
- success: process.env.STORM_COLOR_SUCCESS ?? configFile.colors?.primary,
47666
- info: process.env.STORM_COLOR_INFO ?? configFile.colors?.primary,
47667
- warning: process.env.STORM_COLOR_WARNING ?? configFile.colors?.primary,
47668
- error: process.env.STORM_COLOR_ERROR ?? configFile.colors?.primary,
47669
- fatal: process.env.STORM_COLOR_FATAL ?? configFile.colors?.primary
47623
+ background: process.env.STORM_COLOR_BACKGROUND ?? configFile.colors?.background,
47624
+ success: process.env.STORM_COLOR_SUCCESS ?? configFile.colors?.success,
47625
+ info: process.env.STORM_COLOR_INFO ?? configFile.colors?.info,
47626
+ warning: process.env.STORM_COLOR_WARNING ?? configFile.colors?.warning,
47627
+ error: process.env.STORM_COLOR_ERROR ?? configFile.colors?.error,
47628
+ fatal: process.env.STORM_COLOR_FATAL ?? configFile.colors?.fatal
47670
47629
  };
47671
47630
  } else {
47672
47631
  configFile[key] = configEnv[key];
@@ -47675,13 +47634,14 @@ var loadStormConfig = async (workspaceRoot) => {
47675
47634
  }
47676
47635
  const config = StormConfigSchema.parse(configFile);
47677
47636
  setConfigEnv(config);
47678
- console.debug("\n\n");
47637
+ console.debug("\r\n\r\n");
47679
47638
  console.debug(`Loaded Storm config from ${config.configFile}`);
47680
47639
  for (const key of Object.keys(configFile)) {
47681
- console.debug(` ----- ${key} ----- `);
47640
+ console.debug(`
47641
+ ----- ${key} ----- `);
47682
47642
  console.debug(configFile[key]);
47683
47643
  }
47684
- console.debug("\n\n");
47644
+ console.debug("\r\n\r\n");
47685
47645
  return config;
47686
47646
  };
47687
47647
 
@@ -16158,14 +16158,14 @@ var require_share = __commonJS({
16158
16158
  resetConnection === null || resetConnection === void 0 ? void 0 : resetConnection.unsubscribe();
16159
16159
  resetConnection = void 0;
16160
16160
  };
16161
- var reset2 = function() {
16161
+ var reset = function() {
16162
16162
  cancelReset();
16163
16163
  connection = subject = void 0;
16164
16164
  hasCompleted = hasErrored = false;
16165
16165
  };
16166
16166
  var resetAndUnsubscribe = function() {
16167
16167
  var conn = connection;
16168
- reset2();
16168
+ reset();
16169
16169
  conn === null || conn === void 0 ? void 0 : conn.unsubscribe();
16170
16170
  };
16171
16171
  return lift_1.operate(function(source, subscriber) {
@@ -16189,13 +16189,13 @@ var require_share = __commonJS({
16189
16189
  error: function(err) {
16190
16190
  hasErrored = true;
16191
16191
  cancelReset();
16192
- resetConnection = handleReset(reset2, resetOnError, err);
16192
+ resetConnection = handleReset(reset, resetOnError, err);
16193
16193
  dest.error(err);
16194
16194
  },
16195
16195
  complete: function() {
16196
16196
  hasCompleted = true;
16197
16197
  cancelReset();
16198
- resetConnection = handleReset(reset2, resetOnComplete);
16198
+ resetConnection = handleReset(reset, resetOnComplete);
16199
16199
  dest.complete();
16200
16200
  }
16201
16201
  });
@@ -16205,13 +16205,13 @@ var require_share = __commonJS({
16205
16205
  };
16206
16206
  }
16207
16207
  exports.share = share;
16208
- function handleReset(reset2, on) {
16208
+ function handleReset(reset, on) {
16209
16209
  var args = [];
16210
16210
  for (var _i = 2; _i < arguments.length; _i++) {
16211
16211
  args[_i - 2] = arguments[_i];
16212
16212
  }
16213
16213
  if (on === true) {
16214
- reset2();
16214
+ reset();
16215
16215
  return;
16216
16216
  }
16217
16217
  if (on === false) {
@@ -16220,7 +16220,7 @@ var require_share = __commonJS({
16220
16220
  var onSubscriber = new Subscriber_1.SafeSubscriber({
16221
16221
  next: function() {
16222
16222
  onSubscriber.unsubscribe();
16223
- reset2();
16223
+ reset();
16224
16224
  }
16225
16225
  });
16226
16226
  return innerFrom_1.innerFrom(on.apply(void 0, __spreadArray2([], __read2(args)))).subscribe(onSubscriber);
@@ -28102,7 +28102,7 @@ var require_array = __commonJS({
28102
28102
  parent.enabled = choices.every((ch) => ch.enabled === true);
28103
28103
  parent = parent.parent;
28104
28104
  }
28105
- reset2(this, this.choices);
28105
+ reset(this, this.choices);
28106
28106
  this.emit("toggle", choice, this);
28107
28107
  return choice;
28108
28108
  }
@@ -28400,7 +28400,7 @@ var require_array = __commonJS({
28400
28400
  }
28401
28401
  }
28402
28402
  get choices() {
28403
- return reset2(this, this.state.choices || []);
28403
+ return reset(this, this.state.choices || []);
28404
28404
  }
28405
28405
  set visible(visible) {
28406
28406
  this.state.visible = visible;
@@ -28448,7 +28448,7 @@ var require_array = __commonJS({
28448
28448
  return this.multiple ? this.enabled : this.focused;
28449
28449
  }
28450
28450
  };
28451
- function reset2(prompt, choices) {
28451
+ function reset(prompt, choices) {
28452
28452
  if (choices instanceof Promise)
28453
28453
  return choices;
28454
28454
  if (typeof choices === "function") {
@@ -47329,14 +47329,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47329
47329
  return (message) => {
47330
47330
  console.error(
47331
47331
  `
47332
-
47333
-
47334
- ${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(
47335
- ">"
47336
- )} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.reset.hex(
47332
+ ${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.hex(
47337
47333
  config?.colors?.fatal ? config.colors.fatal : "#1fb2a6"
47338
- )(message)}
47339
-
47334
+ )(message)}
47340
47335
 
47341
47336
  `
47342
47337
  );
@@ -47346,15 +47341,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47346
47341
  return (message) => {
47347
47342
  console.error(
47348
47343
  `
47349
-
47350
-
47351
- ${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(
47352
- ">"
47353
- )} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.reset.hex(
47344
+ ${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(">")} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.hex(
47354
47345
  config?.colors?.error ? config.colors.error : "#7d1a1a"
47355
- )(message)}
47356
-
47357
-
47346
+ )(message)}
47358
47347
  `
47359
47348
  );
47360
47349
  };
@@ -47363,15 +47352,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47363
47352
  return (message) => {
47364
47353
  console.warn(
47365
47354
  `
47366
-
47367
-
47368
- ${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(
47369
- ">"
47370
- )} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
47355
+ ${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(">")} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.hex(
47371
47356
  config?.colors?.warning ? config.colors.warning : "#fcc419"
47372
- )(message)}
47373
-
47374
-
47357
+ )(message)}
47375
47358
  `
47376
47359
  );
47377
47360
  };
@@ -47380,15 +47363,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47380
47363
  return (message) => {
47381
47364
  console.info(
47382
47365
  `
47383
-
47384
-
47385
- ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(
47386
- ">"
47387
- )} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.reset.hex(
47366
+ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.hex(
47388
47367
  config?.colors?.info ? config.colors.info : "#0ea5e9"
47389
- )(message)}
47390
-
47391
-
47368
+ )(message)}
47392
47369
  `
47393
47370
  );
47394
47371
  };
@@ -47397,15 +47374,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47397
47374
  return (message) => {
47398
47375
  console.info(
47399
47376
  `
47400
-
47401
-
47402
- ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(
47403
- ">"
47404
- )} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.reset.hex(
47377
+ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.hex(
47405
47378
  config?.colors?.success ? config.colors.success : "#087f5b"
47406
- )(message)}
47407
-
47408
-
47379
+ )(message)}
47409
47380
  `
47410
47381
  );
47411
47382
  };
@@ -47414,15 +47385,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47414
47385
  return (message) => {
47415
47386
  console.debug(
47416
47387
  `
47417
-
47418
-
47419
- ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
47420
- ">"
47421
- )} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.reset.hex(
47388
+ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.hex(
47422
47389
  config?.colors?.primary ? config.colors.primary : "#1fb2a6"
47423
- )(message)}
47424
-
47425
-
47390
+ )(message)}
47426
47391
  `
47427
47392
  );
47428
47393
  };
@@ -47430,15 +47395,9 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
47430
47395
  return (message) => {
47431
47396
  console.log(
47432
47397
  `
47433
-
47434
-
47435
- ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
47436
- ">"
47437
- )} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.bold.hex(
47398
+ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.hex(
47438
47399
  config?.colors?.primary ? config.colors.primary : "#1fb2a6"
47439
- )(message)}
47440
-
47441
-
47400
+ )(message)}
47442
47401
  `
47443
47402
  );
47444
47403
  };
@@ -47661,12 +47620,12 @@ var loadStormConfig = async (workspaceRoot) => {
47661
47620
  if (key === "colors") {
47662
47621
  configFile.colors = {
47663
47622
  primary: process.env.STORM_COLOR_PRIMARY ?? configFile.colors?.primary,
47664
- background: process.env.STORM_COLOR_BACKGROUND ?? configFile.colors?.primary,
47665
- success: process.env.STORM_COLOR_SUCCESS ?? configFile.colors?.primary,
47666
- info: process.env.STORM_COLOR_INFO ?? configFile.colors?.primary,
47667
- warning: process.env.STORM_COLOR_WARNING ?? configFile.colors?.primary,
47668
- error: process.env.STORM_COLOR_ERROR ?? configFile.colors?.primary,
47669
- fatal: process.env.STORM_COLOR_FATAL ?? configFile.colors?.primary
47623
+ background: process.env.STORM_COLOR_BACKGROUND ?? configFile.colors?.background,
47624
+ success: process.env.STORM_COLOR_SUCCESS ?? configFile.colors?.success,
47625
+ info: process.env.STORM_COLOR_INFO ?? configFile.colors?.info,
47626
+ warning: process.env.STORM_COLOR_WARNING ?? configFile.colors?.warning,
47627
+ error: process.env.STORM_COLOR_ERROR ?? configFile.colors?.error,
47628
+ fatal: process.env.STORM_COLOR_FATAL ?? configFile.colors?.fatal
47670
47629
  };
47671
47630
  } else {
47672
47631
  configFile[key] = configEnv[key];
@@ -47675,13 +47634,14 @@ var loadStormConfig = async (workspaceRoot) => {
47675
47634
  }
47676
47635
  const config = StormConfigSchema.parse(configFile);
47677
47636
  setConfigEnv(config);
47678
- console.debug("\n\n");
47637
+ console.debug("\r\n\r\n");
47679
47638
  console.debug(`Loaded Storm config from ${config.configFile}`);
47680
47639
  for (const key of Object.keys(configFile)) {
47681
- console.debug(` ----- ${key} ----- `);
47640
+ console.debug(`
47641
+ ----- ${key} ----- `);
47682
47642
  console.debug(configFile[key]);
47683
47643
  }
47684
- console.debug("\n\n");
47644
+ console.debug("\r\n\r\n");
47685
47645
  return config;
47686
47646
  };
47687
47647