@storm-software/workspace-tools 1.131.0 → 1.132.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.
- package/CHANGELOG.md +7 -0
- package/README.md +3 -1
- package/config/nx.json +1 -1
- package/index.js +146 -119
- package/meta.json +1 -1
- package/package.json +1 -1
- package/packages/config/src/define-config.d.ts +18 -0
- package/packages/config/src/schema.d.ts +254 -0
- package/packages/config-tools/src/config-file/get-config-file.d.ts +1 -1
- package/packages/config-tools/src/utilities/get-default-config.d.ts +1 -1
- package/src/base/index.js +136 -109
- package/src/executors/clean-package/executor.js +36 -8
- package/src/executors/rolldown/executor.js +36 -8
- package/src/executors/size-limit/executor.js +36 -8
- package/src/executors/tsup/executor.js +36 -8
- package/src/executors/tsup-browser/executor.js +36 -8
- package/src/executors/tsup-neutral/executor.js +36 -8
- package/src/executors/tsup-node/executor.js +36 -8
- package/src/executors/typia/executor.js +36 -8
- package/src/executors/unbuild/executor.js +36 -8
- package/src/generators/browser-library/generator.js +136 -109
- package/src/generators/config-schema/generator.js +36 -8
- package/src/generators/neutral-library/generator.js +136 -109
- package/src/generators/node-library/generator.js +136 -109
- package/src/generators/preset/generator.js +38 -10
- package/src/generators/release-version/generator.js +44 -16
- package/src/utils/index.js +36 -8
|
@@ -61292,8 +61292,8 @@ var init_correct_paths = __esm({
|
|
|
61292
61292
|
if (!path5) {
|
|
61293
61293
|
return "";
|
|
61294
61294
|
}
|
|
61295
|
-
if (path5
|
|
61296
|
-
|
|
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("#
|
|
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: "#
|
|
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
|
|
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
|
}
|
|
@@ -61292,8 +61292,8 @@ var init_correct_paths = __esm({
|
|
|
61292
61292
|
if (!path5) {
|
|
61293
61293
|
return "";
|
|
61294
61294
|
}
|
|
61295
|
-
if (path5
|
|
61296
|
-
|
|
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("#
|
|
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: "#
|
|
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
|
|
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
|
}
|
|
@@ -61292,8 +61292,8 @@ var init_correct_paths = __esm({
|
|
|
61292
61292
|
if (!path5) {
|
|
61293
61293
|
return "";
|
|
61294
61294
|
}
|
|
61295
|
-
if (path5
|
|
61296
|
-
|
|
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("#
|
|
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: "#
|
|
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
|
|
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
|
}
|
|
@@ -63405,8 +63405,8 @@ var init_correct_paths = __esm({
|
|
|
63405
63405
|
if (!path5) {
|
|
63406
63406
|
return "";
|
|
63407
63407
|
}
|
|
63408
|
-
if (path5
|
|
63409
|
-
|
|
63408
|
+
if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
|
|
63409
|
+
path5 = `C:${path5}`;
|
|
63410
63410
|
}
|
|
63411
63411
|
return path5.replaceAll("\\", "/");
|
|
63412
63412
|
};
|
|
@@ -67415,13 +67415,15 @@ var init_lib = __esm({
|
|
|
67415
67415
|
});
|
|
67416
67416
|
|
|
67417
67417
|
// packages/config/src/schema.ts
|
|
67418
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
67418
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Brand3ColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
67419
67419
|
var init_schema = __esm({
|
|
67420
67420
|
"packages/config/src/schema.ts"() {
|
|
67421
67421
|
init_lib();
|
|
67422
|
-
DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#
|
|
67422
|
+
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");
|
|
67423
67423
|
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");
|
|
67424
67424
|
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");
|
|
67425
|
+
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");
|
|
67426
|
+
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");
|
|
67425
67427
|
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");
|
|
67426
67428
|
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");
|
|
67427
67429
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -67433,6 +67435,8 @@ var init_schema = __esm({
|
|
|
67433
67435
|
foreground: LightColorSchema,
|
|
67434
67436
|
background: DarkColorSchema,
|
|
67435
67437
|
brand: BrandColorSchema,
|
|
67438
|
+
brand2: Brand2ColorSchema,
|
|
67439
|
+
brand3: Brand3ColorSchema,
|
|
67436
67440
|
accent: AccentColorSchema,
|
|
67437
67441
|
help: HelpColorSchema,
|
|
67438
67442
|
success: SuccessColorSchema,
|
|
@@ -67445,6 +67449,8 @@ var init_schema = __esm({
|
|
|
67445
67449
|
foreground: DarkColorSchema,
|
|
67446
67450
|
background: LightColorSchema,
|
|
67447
67451
|
brand: BrandColorSchema,
|
|
67452
|
+
brand2: Brand2ColorSchema,
|
|
67453
|
+
brand3: Brand3ColorSchema,
|
|
67448
67454
|
accent: AccentColorSchema,
|
|
67449
67455
|
help: HelpColorSchema,
|
|
67450
67456
|
success: SuccessColorSchema,
|
|
@@ -67461,6 +67467,8 @@ var init_schema = __esm({
|
|
|
67461
67467
|
dark: DarkColorSchema,
|
|
67462
67468
|
light: LightColorSchema,
|
|
67463
67469
|
brand: BrandColorSchema,
|
|
67470
|
+
brand2: Brand2ColorSchema,
|
|
67471
|
+
brand3: Brand3ColorSchema,
|
|
67464
67472
|
accent: AccentColorSchema,
|
|
67465
67473
|
help: HelpColorSchema,
|
|
67466
67474
|
success: SuccessColorSchema,
|
|
@@ -67588,15 +67596,17 @@ var init_src = __esm({
|
|
|
67588
67596
|
var import_node_fs10, import_node_path6, DEFAULT_COLOR_CONFIG, DEFAULT_STORM_CONFIG, getDefaultConfig;
|
|
67589
67597
|
var init_get_default_config = __esm({
|
|
67590
67598
|
"packages/config-tools/src/utilities/get-default-config.ts"() {
|
|
67599
|
+
init_src();
|
|
67591
67600
|
import_node_fs10 = require("node:fs");
|
|
67592
67601
|
import_node_path6 = require("node:path");
|
|
67593
|
-
init_src();
|
|
67594
67602
|
init_find_workspace_root();
|
|
67595
67603
|
DEFAULT_COLOR_CONFIG = {
|
|
67596
67604
|
light: {
|
|
67597
67605
|
background: "#f4f4f5",
|
|
67598
67606
|
foreground: "#1d232a",
|
|
67599
67607
|
brand: "#1fb2a6",
|
|
67608
|
+
brand2: "#7434DB",
|
|
67609
|
+
brand3: "#00C2CE",
|
|
67600
67610
|
help: "#8250df",
|
|
67601
67611
|
success: "#087f5b",
|
|
67602
67612
|
info: "#0550ae",
|
|
@@ -67604,9 +67614,11 @@ var init_get_default_config = __esm({
|
|
|
67604
67614
|
error: "#a40e26"
|
|
67605
67615
|
},
|
|
67606
67616
|
dark: {
|
|
67607
|
-
background: "#
|
|
67617
|
+
background: "#0D1017",
|
|
67608
67618
|
foreground: "#fcfcf5",
|
|
67609
67619
|
brand: "#1fb2a6",
|
|
67620
|
+
brand2: "#7434DB",
|
|
67621
|
+
brand3: "#00C2CE",
|
|
67610
67622
|
help: "#8256D0",
|
|
67611
67623
|
success: "#087f5b",
|
|
67612
67624
|
info: "#316DCA",
|
|
@@ -69384,7 +69396,7 @@ ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fa
|
|
|
69384
69396
|
console.error(
|
|
69385
69397
|
`
|
|
69386
69398
|
${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.error ?? "#f85149").whiteBright(
|
|
69387
|
-
" \u2718
|
|
69399
|
+
" \u2718 Error "
|
|
69388
69400
|
)} ${_chalk.hex(colors.error ?? "#f85149")(formatLogMessage(message))}
|
|
69389
69401
|
`
|
|
69390
69402
|
);
|
|
@@ -69836,6 +69848,8 @@ var init_get_env = __esm({
|
|
|
69836
69848
|
dark: process.env[`${prefix}DARK`],
|
|
69837
69849
|
light: process.env[`${prefix}LIGHT`],
|
|
69838
69850
|
brand: process.env[`${prefix}BRAND`],
|
|
69851
|
+
brand2: process.env[`${prefix}BRAND2`],
|
|
69852
|
+
brand3: process.env[`${prefix}BRAND3`],
|
|
69839
69853
|
accent: process.env[`${prefix}ACCENT`],
|
|
69840
69854
|
help: process.env[`${prefix}HELP`],
|
|
69841
69855
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -69858,6 +69872,8 @@ var init_get_env = __esm({
|
|
|
69858
69872
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
69859
69873
|
background: process.env[`${prefix}BACKGROUND`],
|
|
69860
69874
|
brand: process.env[`${prefix}BRAND`],
|
|
69875
|
+
brand2: process.env[`${prefix}BRAND2`],
|
|
69876
|
+
brand3: process.env[`${prefix}BRAND3`],
|
|
69861
69877
|
accent: process.env[`${prefix}ACCENT`],
|
|
69862
69878
|
help: process.env[`${prefix}HELP`],
|
|
69863
69879
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -69875,8 +69891,8 @@ var setExtensionEnv, setConfigEnv, setThemeColorConfigEnv, setSingleThemeColorCo
|
|
|
69875
69891
|
var init_set_env = __esm({
|
|
69876
69892
|
"packages/config-tools/src/env/set-env.ts"() {
|
|
69877
69893
|
init_types2();
|
|
69878
|
-
init_get_log_level();
|
|
69879
69894
|
init_correct_paths();
|
|
69895
|
+
init_get_log_level();
|
|
69880
69896
|
setExtensionEnv = (extensionName, extension) => {
|
|
69881
69897
|
for (const key of Object.keys(extension ?? {})) {
|
|
69882
69898
|
if (extension[key]) {
|
|
@@ -70062,6 +70078,12 @@ var init_set_env = __esm({
|
|
|
70062
70078
|
if (config.brand) {
|
|
70063
70079
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
70064
70080
|
}
|
|
70081
|
+
if (config.brand2) {
|
|
70082
|
+
process.env[`${prefix}BRAND2`] = config.brand2;
|
|
70083
|
+
}
|
|
70084
|
+
if (config.brand3) {
|
|
70085
|
+
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
70086
|
+
}
|
|
70065
70087
|
if (config.accent) {
|
|
70066
70088
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
70067
70089
|
}
|
|
@@ -70100,6 +70122,12 @@ var init_set_env = __esm({
|
|
|
70100
70122
|
if (config.brand) {
|
|
70101
70123
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
70102
70124
|
}
|
|
70125
|
+
if (config.brand2) {
|
|
70126
|
+
process.env[`${prefix}BRAND2`] = config.brand2;
|
|
70127
|
+
}
|
|
70128
|
+
if (config.brand3) {
|
|
70129
|
+
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
70130
|
+
}
|
|
70103
70131
|
if (config.accent) {
|
|
70104
70132
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
70105
70133
|
}
|