@storm-software/workspace-tools 1.131.0 → 1.133.0

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.
@@ -61292,8 +61292,8 @@ var init_correct_paths = __esm({
61292
61292
  if (!path6) {
61293
61293
  return "";
61294
61294
  }
61295
- if (path6?.toUpperCase()?.startsWith("C:")) {
61296
- return path6.replaceAll("/", "\\");
61295
+ if (!path6.toUpperCase().startsWith("C:") && path6.includes("\\")) {
61296
+ path6 = `C:${path6}`;
61297
61297
  }
61298
61298
  return path6.replaceAll("\\", "/");
61299
61299
  };
@@ -65302,13 +65302,15 @@ var init_lib = __esm({
65302
65302
  });
65303
65303
 
65304
65304
  // packages/config/src/schema.ts
65305
- var DarkColorSchema, LightColorSchema, BrandColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
65305
+ var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Brand3ColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
65306
65306
  var init_schema = __esm({
65307
65307
  "packages/config/src/schema.ts"() {
65308
65308
  init_lib();
65309
- DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
65309
+ DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
65310
65310
  LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
65311
65311
  BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
65312
+ Brand2ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
65313
+ Brand3ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
65312
65314
  AccentColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
65313
65315
  HelpColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
65314
65316
  SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
@@ -65320,6 +65322,8 @@ var init_schema = __esm({
65320
65322
  foreground: LightColorSchema,
65321
65323
  background: DarkColorSchema,
65322
65324
  brand: BrandColorSchema,
65325
+ brand2: Brand2ColorSchema,
65326
+ brand3: Brand3ColorSchema,
65323
65327
  accent: AccentColorSchema,
65324
65328
  help: HelpColorSchema,
65325
65329
  success: SuccessColorSchema,
@@ -65332,6 +65336,8 @@ var init_schema = __esm({
65332
65336
  foreground: DarkColorSchema,
65333
65337
  background: LightColorSchema,
65334
65338
  brand: BrandColorSchema,
65339
+ brand2: Brand2ColorSchema,
65340
+ brand3: Brand3ColorSchema,
65335
65341
  accent: AccentColorSchema,
65336
65342
  help: HelpColorSchema,
65337
65343
  success: SuccessColorSchema,
@@ -65348,6 +65354,8 @@ var init_schema = __esm({
65348
65354
  dark: DarkColorSchema,
65349
65355
  light: LightColorSchema,
65350
65356
  brand: BrandColorSchema,
65357
+ brand2: Brand2ColorSchema,
65358
+ brand3: Brand3ColorSchema,
65351
65359
  accent: AccentColorSchema,
65352
65360
  help: HelpColorSchema,
65353
65361
  success: SuccessColorSchema,
@@ -65475,15 +65483,17 @@ var init_src = __esm({
65475
65483
  var import_node_fs10, import_node_path6, DEFAULT_COLOR_CONFIG, DEFAULT_STORM_CONFIG, getDefaultConfig;
65476
65484
  var init_get_default_config = __esm({
65477
65485
  "packages/config-tools/src/utilities/get-default-config.ts"() {
65486
+ init_src();
65478
65487
  import_node_fs10 = require("node:fs");
65479
65488
  import_node_path6 = require("node:path");
65480
- init_src();
65481
65489
  init_find_workspace_root();
65482
65490
  DEFAULT_COLOR_CONFIG = {
65483
65491
  light: {
65484
65492
  background: "#f4f4f5",
65485
65493
  foreground: "#1d232a",
65486
65494
  brand: "#1fb2a6",
65495
+ brand2: "#7434DB",
65496
+ brand3: "#00C2CE",
65487
65497
  help: "#8250df",
65488
65498
  success: "#087f5b",
65489
65499
  info: "#0550ae",
@@ -65491,9 +65501,11 @@ var init_get_default_config = __esm({
65491
65501
  error: "#a40e26"
65492
65502
  },
65493
65503
  dark: {
65494
- background: "#22272E",
65504
+ background: "#0D1017",
65495
65505
  foreground: "#fcfcf5",
65496
65506
  brand: "#1fb2a6",
65507
+ brand2: "#7434DB",
65508
+ brand3: "#00C2CE",
65497
65509
  help: "#8256D0",
65498
65510
  success: "#087f5b",
65499
65511
  info: "#316DCA",
@@ -67271,7 +67283,7 @@ ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fa
67271
67283
  console.error(
67272
67284
  `
67273
67285
  ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.error ?? "#f85149").whiteBright(
67274
- " \u2718 Error "
67286
+ " \u2718 Error "
67275
67287
  )} ${_chalk.hex(colors.error ?? "#f85149")(formatLogMessage(message))}
67276
67288
  `
67277
67289
  );
@@ -67723,6 +67735,8 @@ var init_get_env = __esm({
67723
67735
  dark: process.env[`${prefix}DARK`],
67724
67736
  light: process.env[`${prefix}LIGHT`],
67725
67737
  brand: process.env[`${prefix}BRAND`],
67738
+ brand2: process.env[`${prefix}BRAND2`],
67739
+ brand3: process.env[`${prefix}BRAND3`],
67726
67740
  accent: process.env[`${prefix}ACCENT`],
67727
67741
  help: process.env[`${prefix}HELP`],
67728
67742
  success: process.env[`${prefix}SUCCESS`],
@@ -67745,6 +67759,8 @@ var init_get_env = __esm({
67745
67759
  foreground: process.env[`${prefix}FOREGROUND`],
67746
67760
  background: process.env[`${prefix}BACKGROUND`],
67747
67761
  brand: process.env[`${prefix}BRAND`],
67762
+ brand2: process.env[`${prefix}BRAND2`],
67763
+ brand3: process.env[`${prefix}BRAND3`],
67748
67764
  accent: process.env[`${prefix}ACCENT`],
67749
67765
  help: process.env[`${prefix}HELP`],
67750
67766
  success: process.env[`${prefix}SUCCESS`],
@@ -67762,8 +67778,8 @@ var setExtensionEnv, setConfigEnv, setThemeColorConfigEnv, setSingleThemeColorCo
67762
67778
  var init_set_env = __esm({
67763
67779
  "packages/config-tools/src/env/set-env.ts"() {
67764
67780
  init_types2();
67765
- init_get_log_level();
67766
67781
  init_correct_paths();
67782
+ init_get_log_level();
67767
67783
  setExtensionEnv = (extensionName, extension) => {
67768
67784
  for (const key of Object.keys(extension ?? {})) {
67769
67785
  if (extension[key]) {
@@ -67949,6 +67965,12 @@ var init_set_env = __esm({
67949
67965
  if (config.brand) {
67950
67966
  process.env[`${prefix}BRAND`] = config.brand;
67951
67967
  }
67968
+ if (config.brand2) {
67969
+ process.env[`${prefix}BRAND2`] = config.brand2;
67970
+ }
67971
+ if (config.brand3) {
67972
+ process.env[`${prefix}BRAND3`] = config.brand3;
67973
+ }
67952
67974
  if (config.accent) {
67953
67975
  process.env[`${prefix}ACCENT`] = config.accent;
67954
67976
  }
@@ -67987,6 +68009,12 @@ var init_set_env = __esm({
67987
68009
  if (config.brand) {
67988
68010
  process.env[`${prefix}BRAND`] = config.brand;
67989
68011
  }
68012
+ if (config.brand2) {
68013
+ process.env[`${prefix}BRAND2`] = config.brand2;
68014
+ }
68015
+ if (config.brand3) {
68016
+ process.env[`${prefix}BRAND3`] = config.brand3;
68017
+ }
67990
68018
  if (config.accent) {
67991
68019
  process.env[`${prefix}ACCENT`] = config.accent;
67992
68020
  }
@@ -68176,8 +68204,8 @@ __export(generator_exports, {
68176
68204
  presetGeneratorFn: () => presetGeneratorFn
68177
68205
  });
68178
68206
  module.exports = __toCommonJS(generator_exports);
68179
- var path5 = __toESM(require("node:path"));
68180
68207
  var import_devkit = require("@nx/devkit");
68208
+ var path5 = __toESM(require("node:path"));
68181
68209
 
68182
68210
  // packages/workspace-tools/src/base/base-generator.ts
68183
68211
  init_src2();
@@ -68392,7 +68420,7 @@ async function presetGeneratorFn(tree, options) {
68392
68420
  }
68393
68421
  json.scripts.lint = "pnpm storm-lint all --skip-cspell --skip-alex";
68394
68422
  json.scripts.commit = "pnpm storm-git commit";
68395
- json.scripts["readme-gen"] = 'pnpm storm-git readme-gen --templates="docs/readme-templates"';
68423
+ json.scripts["readme-gen"] = 'pnpm storm-git readme-gen --templates="tools/readme-templates"';
68396
68424
  json.scripts["api-extractor"] = 'pnpm storm-docs api-extractor --outputPath="docs/api-reference" --clean';
68397
68425
  json.scripts.release = "pnpm storm-git release";
68398
68426
  json.packageManager ??= `pnpm@${pnpmVersion}`;
@@ -1856,9 +1856,9 @@ var require_semver2 = __commonJS({
1856
1856
  }
1857
1857
  });
1858
1858
 
1859
- // node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/package.js
1859
+ // node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/package.js
1860
1860
  var require_package = __commonJS({
1861
- "node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/package.js"(exports2) {
1861
+ "node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/package.js"(exports2) {
1862
1862
  "use strict";
1863
1863
  Object.defineProperty(exports2, "__esModule", { value: true });
1864
1864
  exports2.Package = void 0;
@@ -4091,9 +4091,9 @@ var require_npa = __commonJS({
4091
4091
  }
4092
4092
  });
4093
4093
 
4094
- // node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/resolve-version-spec.js
4094
+ // node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/resolve-version-spec.js
4095
4095
  var require_resolve_version_spec = __commonJS({
4096
- "node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/resolve-version-spec.js"(exports2) {
4096
+ "node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/resolve-version-spec.js"(exports2) {
4097
4097
  "use strict";
4098
4098
  Object.defineProperty(exports2, "__esModule", { value: true });
4099
4099
  exports2.resolveVersionSpec = resolveVersionSpec;
@@ -4119,9 +4119,9 @@ var require_resolve_version_spec = __commonJS({
4119
4119
  }
4120
4120
  });
4121
4121
 
4122
- // node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/resolve-local-package-dependencies.js
4122
+ // node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/resolve-local-package-dependencies.js
4123
4123
  var require_resolve_local_package_dependencies = __commonJS({
4124
- "node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/resolve-local-package-dependencies.js"(exports2) {
4124
+ "node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/resolve-local-package-dependencies.js"(exports2) {
4125
4125
  "use strict";
4126
4126
  Object.defineProperty(exports2, "__esModule", { value: true });
4127
4127
  exports2.resolveLocalPackageDependencies = resolveLocalPackageDependencies2;
@@ -4189,9 +4189,9 @@ var require_resolve_local_package_dependencies = __commonJS({
4189
4189
  }
4190
4190
  });
4191
4191
 
4192
- // node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/update-lock-file.js
4192
+ // node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/update-lock-file.js
4193
4193
  var require_update_lock_file = __commonJS({
4194
- "node_modules/.pnpm/@nx+js@19.5.1_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_orxqrlvbi5rmxcimzuimqcmilu/node_modules/@nx/js/src/generators/release-version/utils/update-lock-file.js"(exports2) {
4194
+ "node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/release-version/utils/update-lock-file.js"(exports2) {
4195
4195
  "use strict";
4196
4196
  Object.defineProperty(exports2, "__esModule", { value: true });
4197
4197
  exports2.updateLockFile = updateLockFile2;
@@ -65552,8 +65552,8 @@ var init_correct_paths = __esm({
65552
65552
  if (!path5) {
65553
65553
  return "";
65554
65554
  }
65555
- if (path5?.toUpperCase()?.startsWith("C:")) {
65556
- return path5.replaceAll("/", "\\");
65555
+ if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
65556
+ path5 = `C:${path5}`;
65557
65557
  }
65558
65558
  return path5.replaceAll("\\", "/");
65559
65559
  };
@@ -69562,13 +69562,15 @@ var init_lib = __esm({
69562
69562
  });
69563
69563
 
69564
69564
  // packages/config/src/schema.ts
69565
- var DarkColorSchema, LightColorSchema, BrandColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
69565
+ var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Brand3ColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
69566
69566
  var init_schema = __esm({
69567
69567
  "packages/config/src/schema.ts"() {
69568
69568
  init_lib();
69569
- DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
69569
+ DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
69570
69570
  LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
69571
69571
  BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
69572
+ Brand2ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
69573
+ Brand3ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
69572
69574
  AccentColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
69573
69575
  HelpColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
69574
69576
  SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
@@ -69580,6 +69582,8 @@ var init_schema = __esm({
69580
69582
  foreground: LightColorSchema,
69581
69583
  background: DarkColorSchema,
69582
69584
  brand: BrandColorSchema,
69585
+ brand2: Brand2ColorSchema,
69586
+ brand3: Brand3ColorSchema,
69583
69587
  accent: AccentColorSchema,
69584
69588
  help: HelpColorSchema,
69585
69589
  success: SuccessColorSchema,
@@ -69592,6 +69596,8 @@ var init_schema = __esm({
69592
69596
  foreground: DarkColorSchema,
69593
69597
  background: LightColorSchema,
69594
69598
  brand: BrandColorSchema,
69599
+ brand2: Brand2ColorSchema,
69600
+ brand3: Brand3ColorSchema,
69595
69601
  accent: AccentColorSchema,
69596
69602
  help: HelpColorSchema,
69597
69603
  success: SuccessColorSchema,
@@ -69608,6 +69614,8 @@ var init_schema = __esm({
69608
69614
  dark: DarkColorSchema,
69609
69615
  light: LightColorSchema,
69610
69616
  brand: BrandColorSchema,
69617
+ brand2: Brand2ColorSchema,
69618
+ brand3: Brand3ColorSchema,
69611
69619
  accent: AccentColorSchema,
69612
69620
  help: HelpColorSchema,
69613
69621
  success: SuccessColorSchema,
@@ -69735,15 +69743,17 @@ var init_src = __esm({
69735
69743
  var import_node_fs10, import_node_path6, DEFAULT_COLOR_CONFIG, DEFAULT_STORM_CONFIG, getDefaultConfig;
69736
69744
  var init_get_default_config = __esm({
69737
69745
  "packages/config-tools/src/utilities/get-default-config.ts"() {
69746
+ init_src();
69738
69747
  import_node_fs10 = require("node:fs");
69739
69748
  import_node_path6 = require("node:path");
69740
- init_src();
69741
69749
  init_find_workspace_root();
69742
69750
  DEFAULT_COLOR_CONFIG = {
69743
69751
  light: {
69744
69752
  background: "#f4f4f5",
69745
69753
  foreground: "#1d232a",
69746
69754
  brand: "#1fb2a6",
69755
+ brand2: "#7434DB",
69756
+ brand3: "#00C2CE",
69747
69757
  help: "#8250df",
69748
69758
  success: "#087f5b",
69749
69759
  info: "#0550ae",
@@ -69751,9 +69761,11 @@ var init_get_default_config = __esm({
69751
69761
  error: "#a40e26"
69752
69762
  },
69753
69763
  dark: {
69754
- background: "#22272E",
69764
+ background: "#0D1017",
69755
69765
  foreground: "#fcfcf5",
69756
69766
  brand: "#1fb2a6",
69767
+ brand2: "#7434DB",
69768
+ brand3: "#00C2CE",
69757
69769
  help: "#8256D0",
69758
69770
  success: "#087f5b",
69759
69771
  info: "#316DCA",
@@ -71531,7 +71543,7 @@ ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fa
71531
71543
  console.error(
71532
71544
  `
71533
71545
  ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.error ?? "#f85149").whiteBright(
71534
- " \u2718 Error "
71546
+ " \u2718 Error "
71535
71547
  )} ${_chalk.hex(colors.error ?? "#f85149")(formatLogMessage(message))}
71536
71548
  `
71537
71549
  );
@@ -71983,6 +71995,8 @@ var init_get_env = __esm({
71983
71995
  dark: process.env[`${prefix}DARK`],
71984
71996
  light: process.env[`${prefix}LIGHT`],
71985
71997
  brand: process.env[`${prefix}BRAND`],
71998
+ brand2: process.env[`${prefix}BRAND2`],
71999
+ brand3: process.env[`${prefix}BRAND3`],
71986
72000
  accent: process.env[`${prefix}ACCENT`],
71987
72001
  help: process.env[`${prefix}HELP`],
71988
72002
  success: process.env[`${prefix}SUCCESS`],
@@ -72005,6 +72019,8 @@ var init_get_env = __esm({
72005
72019
  foreground: process.env[`${prefix}FOREGROUND`],
72006
72020
  background: process.env[`${prefix}BACKGROUND`],
72007
72021
  brand: process.env[`${prefix}BRAND`],
72022
+ brand2: process.env[`${prefix}BRAND2`],
72023
+ brand3: process.env[`${prefix}BRAND3`],
72008
72024
  accent: process.env[`${prefix}ACCENT`],
72009
72025
  help: process.env[`${prefix}HELP`],
72010
72026
  success: process.env[`${prefix}SUCCESS`],
@@ -72022,8 +72038,8 @@ var setExtensionEnv, setConfigEnv, setThemeColorConfigEnv, setSingleThemeColorCo
72022
72038
  var init_set_env = __esm({
72023
72039
  "packages/config-tools/src/env/set-env.ts"() {
72024
72040
  init_types2();
72025
- init_get_log_level();
72026
72041
  init_correct_paths();
72042
+ init_get_log_level();
72027
72043
  setExtensionEnv = (extensionName, extension) => {
72028
72044
  for (const key of Object.keys(extension ?? {})) {
72029
72045
  if (extension[key]) {
@@ -72209,6 +72225,12 @@ var init_set_env = __esm({
72209
72225
  if (config.brand) {
72210
72226
  process.env[`${prefix}BRAND`] = config.brand;
72211
72227
  }
72228
+ if (config.brand2) {
72229
+ process.env[`${prefix}BRAND2`] = config.brand2;
72230
+ }
72231
+ if (config.brand3) {
72232
+ process.env[`${prefix}BRAND3`] = config.brand3;
72233
+ }
72212
72234
  if (config.accent) {
72213
72235
  process.env[`${prefix}ACCENT`] = config.accent;
72214
72236
  }
@@ -72247,6 +72269,12 @@ var init_set_env = __esm({
72247
72269
  if (config.brand) {
72248
72270
  process.env[`${prefix}BRAND`] = config.brand;
72249
72271
  }
72272
+ if (config.brand2) {
72273
+ process.env[`${prefix}BRAND2`] = config.brand2;
72274
+ }
72275
+ if (config.brand3) {
72276
+ process.env[`${prefix}BRAND3`] = config.brand3;
72277
+ }
72250
72278
  if (config.accent) {
72251
72279
  process.env[`${prefix}ACCENT`] = config.accent;
72252
72280
  }
@@ -61292,8 +61292,8 @@ var init_correct_paths = __esm({
61292
61292
  if (!path5) {
61293
61293
  return "";
61294
61294
  }
61295
- if (path5?.toUpperCase()?.startsWith("C:")) {
61296
- return path5.replaceAll("/", "\\");
61295
+ if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
61296
+ path5 = `C:${path5}`;
61297
61297
  }
61298
61298
  return path5.replaceAll("\\", "/");
61299
61299
  };
@@ -65302,13 +65302,15 @@ var init_lib = __esm({
65302
65302
  });
65303
65303
 
65304
65304
  // packages/config/src/schema.ts
65305
- var DarkColorSchema, LightColorSchema, BrandColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
65305
+ var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Brand3ColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
65306
65306
  var init_schema = __esm({
65307
65307
  "packages/config/src/schema.ts"() {
65308
65308
  init_lib();
65309
- DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
65309
+ DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
65310
65310
  LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
65311
65311
  BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
65312
+ Brand2ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
65313
+ Brand3ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
65312
65314
  AccentColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
65313
65315
  HelpColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
65314
65316
  SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
@@ -65320,6 +65322,8 @@ var init_schema = __esm({
65320
65322
  foreground: LightColorSchema,
65321
65323
  background: DarkColorSchema,
65322
65324
  brand: BrandColorSchema,
65325
+ brand2: Brand2ColorSchema,
65326
+ brand3: Brand3ColorSchema,
65323
65327
  accent: AccentColorSchema,
65324
65328
  help: HelpColorSchema,
65325
65329
  success: SuccessColorSchema,
@@ -65332,6 +65336,8 @@ var init_schema = __esm({
65332
65336
  foreground: DarkColorSchema,
65333
65337
  background: LightColorSchema,
65334
65338
  brand: BrandColorSchema,
65339
+ brand2: Brand2ColorSchema,
65340
+ brand3: Brand3ColorSchema,
65335
65341
  accent: AccentColorSchema,
65336
65342
  help: HelpColorSchema,
65337
65343
  success: SuccessColorSchema,
@@ -65348,6 +65354,8 @@ var init_schema = __esm({
65348
65354
  dark: DarkColorSchema,
65349
65355
  light: LightColorSchema,
65350
65356
  brand: BrandColorSchema,
65357
+ brand2: Brand2ColorSchema,
65358
+ brand3: Brand3ColorSchema,
65351
65359
  accent: AccentColorSchema,
65352
65360
  help: HelpColorSchema,
65353
65361
  success: SuccessColorSchema,
@@ -65475,15 +65483,17 @@ var init_src = __esm({
65475
65483
  var import_node_fs10, import_node_path6, DEFAULT_COLOR_CONFIG, DEFAULT_STORM_CONFIG, getDefaultConfig;
65476
65484
  var init_get_default_config = __esm({
65477
65485
  "packages/config-tools/src/utilities/get-default-config.ts"() {
65486
+ init_src();
65478
65487
  import_node_fs10 = require("node:fs");
65479
65488
  import_node_path6 = require("node:path");
65480
- init_src();
65481
65489
  init_find_workspace_root();
65482
65490
  DEFAULT_COLOR_CONFIG = {
65483
65491
  light: {
65484
65492
  background: "#f4f4f5",
65485
65493
  foreground: "#1d232a",
65486
65494
  brand: "#1fb2a6",
65495
+ brand2: "#7434DB",
65496
+ brand3: "#00C2CE",
65487
65497
  help: "#8250df",
65488
65498
  success: "#087f5b",
65489
65499
  info: "#0550ae",
@@ -65491,9 +65501,11 @@ var init_get_default_config = __esm({
65491
65501
  error: "#a40e26"
65492
65502
  },
65493
65503
  dark: {
65494
- background: "#22272E",
65504
+ background: "#0D1017",
65495
65505
  foreground: "#fcfcf5",
65496
65506
  brand: "#1fb2a6",
65507
+ brand2: "#7434DB",
65508
+ brand3: "#00C2CE",
65497
65509
  help: "#8256D0",
65498
65510
  success: "#087f5b",
65499
65511
  info: "#316DCA",
@@ -67271,7 +67283,7 @@ ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fa
67271
67283
  console.error(
67272
67284
  `
67273
67285
  ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.error ?? "#f85149").whiteBright(
67274
- " \u2718 Error "
67286
+ " \u2718 Error "
67275
67287
  )} ${_chalk.hex(colors.error ?? "#f85149")(formatLogMessage(message))}
67276
67288
  `
67277
67289
  );
@@ -67723,6 +67735,8 @@ var init_get_env = __esm({
67723
67735
  dark: process.env[`${prefix}DARK`],
67724
67736
  light: process.env[`${prefix}LIGHT`],
67725
67737
  brand: process.env[`${prefix}BRAND`],
67738
+ brand2: process.env[`${prefix}BRAND2`],
67739
+ brand3: process.env[`${prefix}BRAND3`],
67726
67740
  accent: process.env[`${prefix}ACCENT`],
67727
67741
  help: process.env[`${prefix}HELP`],
67728
67742
  success: process.env[`${prefix}SUCCESS`],
@@ -67745,6 +67759,8 @@ var init_get_env = __esm({
67745
67759
  foreground: process.env[`${prefix}FOREGROUND`],
67746
67760
  background: process.env[`${prefix}BACKGROUND`],
67747
67761
  brand: process.env[`${prefix}BRAND`],
67762
+ brand2: process.env[`${prefix}BRAND2`],
67763
+ brand3: process.env[`${prefix}BRAND3`],
67748
67764
  accent: process.env[`${prefix}ACCENT`],
67749
67765
  help: process.env[`${prefix}HELP`],
67750
67766
  success: process.env[`${prefix}SUCCESS`],
@@ -67762,8 +67778,8 @@ var setExtensionEnv, setConfigEnv, setThemeColorConfigEnv, setSingleThemeColorCo
67762
67778
  var init_set_env = __esm({
67763
67779
  "packages/config-tools/src/env/set-env.ts"() {
67764
67780
  init_types2();
67765
- init_get_log_level();
67766
67781
  init_correct_paths();
67782
+ init_get_log_level();
67767
67783
  setExtensionEnv = (extensionName, extension) => {
67768
67784
  for (const key of Object.keys(extension ?? {})) {
67769
67785
  if (extension[key]) {
@@ -67949,6 +67965,12 @@ var init_set_env = __esm({
67949
67965
  if (config.brand) {
67950
67966
  process.env[`${prefix}BRAND`] = config.brand;
67951
67967
  }
67968
+ if (config.brand2) {
67969
+ process.env[`${prefix}BRAND2`] = config.brand2;
67970
+ }
67971
+ if (config.brand3) {
67972
+ process.env[`${prefix}BRAND3`] = config.brand3;
67973
+ }
67952
67974
  if (config.accent) {
67953
67975
  process.env[`${prefix}ACCENT`] = config.accent;
67954
67976
  }
@@ -67987,6 +68009,12 @@ var init_set_env = __esm({
67987
68009
  if (config.brand) {
67988
68010
  process.env[`${prefix}BRAND`] = config.brand;
67989
68011
  }
68012
+ if (config.brand2) {
68013
+ process.env[`${prefix}BRAND2`] = config.brand2;
68014
+ }
68015
+ if (config.brand3) {
68016
+ process.env[`${prefix}BRAND3`] = config.brand3;
68017
+ }
67990
68018
  if (config.accent) {
67991
68019
  process.env[`${prefix}ACCENT`] = config.accent;
67992
68020
  }