@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.
- package/CHANGELOG.md +14 -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 (!path6) {
|
|
61293
61293
|
return "";
|
|
61294
61294
|
}
|
|
61295
|
-
if (path6
|
|
61296
|
-
|
|
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("#
|
|
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
|
}
|
|
@@ -61780,8 +61780,8 @@ var init_correct_paths = __esm({
|
|
|
61780
61780
|
if (!path6) {
|
|
61781
61781
|
return "";
|
|
61782
61782
|
}
|
|
61783
|
-
if (path6
|
|
61784
|
-
|
|
61783
|
+
if (!path6.toUpperCase().startsWith("C:") && path6.includes("\\")) {
|
|
61784
|
+
path6 = `C:${path6}`;
|
|
61785
61785
|
}
|
|
61786
61786
|
return path6.replaceAll("\\", "/");
|
|
61787
61787
|
};
|
|
@@ -65790,13 +65790,15 @@ var init_lib = __esm({
|
|
|
65790
65790
|
});
|
|
65791
65791
|
|
|
65792
65792
|
// packages/config/src/schema.ts
|
|
65793
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
65793
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Brand3ColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
65794
65794
|
var init_schema = __esm({
|
|
65795
65795
|
"packages/config/src/schema.ts"() {
|
|
65796
65796
|
init_lib();
|
|
65797
|
-
DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#
|
|
65797
|
+
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");
|
|
65798
65798
|
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");
|
|
65799
65799
|
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");
|
|
65800
|
+
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");
|
|
65801
|
+
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");
|
|
65800
65802
|
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");
|
|
65801
65803
|
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");
|
|
65802
65804
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -65808,6 +65810,8 @@ var init_schema = __esm({
|
|
|
65808
65810
|
foreground: LightColorSchema,
|
|
65809
65811
|
background: DarkColorSchema,
|
|
65810
65812
|
brand: BrandColorSchema,
|
|
65813
|
+
brand2: Brand2ColorSchema,
|
|
65814
|
+
brand3: Brand3ColorSchema,
|
|
65811
65815
|
accent: AccentColorSchema,
|
|
65812
65816
|
help: HelpColorSchema,
|
|
65813
65817
|
success: SuccessColorSchema,
|
|
@@ -65820,6 +65824,8 @@ var init_schema = __esm({
|
|
|
65820
65824
|
foreground: DarkColorSchema,
|
|
65821
65825
|
background: LightColorSchema,
|
|
65822
65826
|
brand: BrandColorSchema,
|
|
65827
|
+
brand2: Brand2ColorSchema,
|
|
65828
|
+
brand3: Brand3ColorSchema,
|
|
65823
65829
|
accent: AccentColorSchema,
|
|
65824
65830
|
help: HelpColorSchema,
|
|
65825
65831
|
success: SuccessColorSchema,
|
|
@@ -65836,6 +65842,8 @@ var init_schema = __esm({
|
|
|
65836
65842
|
dark: DarkColorSchema,
|
|
65837
65843
|
light: LightColorSchema,
|
|
65838
65844
|
brand: BrandColorSchema,
|
|
65845
|
+
brand2: Brand2ColorSchema,
|
|
65846
|
+
brand3: Brand3ColorSchema,
|
|
65839
65847
|
accent: AccentColorSchema,
|
|
65840
65848
|
help: HelpColorSchema,
|
|
65841
65849
|
success: SuccessColorSchema,
|
|
@@ -65963,15 +65971,17 @@ var init_src = __esm({
|
|
|
65963
65971
|
var import_node_fs16, import_node_path10, DEFAULT_COLOR_CONFIG, DEFAULT_STORM_CONFIG, getDefaultConfig;
|
|
65964
65972
|
var init_get_default_config = __esm({
|
|
65965
65973
|
"packages/config-tools/src/utilities/get-default-config.ts"() {
|
|
65974
|
+
init_src();
|
|
65966
65975
|
import_node_fs16 = require("node:fs");
|
|
65967
65976
|
import_node_path10 = require("node:path");
|
|
65968
|
-
init_src();
|
|
65969
65977
|
init_find_workspace_root();
|
|
65970
65978
|
DEFAULT_COLOR_CONFIG = {
|
|
65971
65979
|
light: {
|
|
65972
65980
|
background: "#f4f4f5",
|
|
65973
65981
|
foreground: "#1d232a",
|
|
65974
65982
|
brand: "#1fb2a6",
|
|
65983
|
+
brand2: "#7434DB",
|
|
65984
|
+
brand3: "#00C2CE",
|
|
65975
65985
|
help: "#8250df",
|
|
65976
65986
|
success: "#087f5b",
|
|
65977
65987
|
info: "#0550ae",
|
|
@@ -65979,9 +65989,11 @@ var init_get_default_config = __esm({
|
|
|
65979
65989
|
error: "#a40e26"
|
|
65980
65990
|
},
|
|
65981
65991
|
dark: {
|
|
65982
|
-
background: "#
|
|
65992
|
+
background: "#0D1017",
|
|
65983
65993
|
foreground: "#fcfcf5",
|
|
65984
65994
|
brand: "#1fb2a6",
|
|
65995
|
+
brand2: "#7434DB",
|
|
65996
|
+
brand3: "#00C2CE",
|
|
65985
65997
|
help: "#8256D0",
|
|
65986
65998
|
success: "#087f5b",
|
|
65987
65999
|
info: "#316DCA",
|
|
@@ -67759,7 +67771,7 @@ ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fa
|
|
|
67759
67771
|
console.error(
|
|
67760
67772
|
`
|
|
67761
67773
|
${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.error ?? "#f85149").whiteBright(
|
|
67762
|
-
" \u2718
|
|
67774
|
+
" \u2718 Error "
|
|
67763
67775
|
)} ${_chalk.hex(colors.error ?? "#f85149")(formatLogMessage(message))}
|
|
67764
67776
|
`
|
|
67765
67777
|
);
|
|
@@ -68211,6 +68223,8 @@ var init_get_env = __esm({
|
|
|
68211
68223
|
dark: process.env[`${prefix}DARK`],
|
|
68212
68224
|
light: process.env[`${prefix}LIGHT`],
|
|
68213
68225
|
brand: process.env[`${prefix}BRAND`],
|
|
68226
|
+
brand2: process.env[`${prefix}BRAND2`],
|
|
68227
|
+
brand3: process.env[`${prefix}BRAND3`],
|
|
68214
68228
|
accent: process.env[`${prefix}ACCENT`],
|
|
68215
68229
|
help: process.env[`${prefix}HELP`],
|
|
68216
68230
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -68233,6 +68247,8 @@ var init_get_env = __esm({
|
|
|
68233
68247
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
68234
68248
|
background: process.env[`${prefix}BACKGROUND`],
|
|
68235
68249
|
brand: process.env[`${prefix}BRAND`],
|
|
68250
|
+
brand2: process.env[`${prefix}BRAND2`],
|
|
68251
|
+
brand3: process.env[`${prefix}BRAND3`],
|
|
68236
68252
|
accent: process.env[`${prefix}ACCENT`],
|
|
68237
68253
|
help: process.env[`${prefix}HELP`],
|
|
68238
68254
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -68250,8 +68266,8 @@ var setExtensionEnv, setConfigEnv, setThemeColorConfigEnv, setSingleThemeColorCo
|
|
|
68250
68266
|
var init_set_env = __esm({
|
|
68251
68267
|
"packages/config-tools/src/env/set-env.ts"() {
|
|
68252
68268
|
init_types2();
|
|
68253
|
-
init_get_log_level();
|
|
68254
68269
|
init_correct_paths();
|
|
68270
|
+
init_get_log_level();
|
|
68255
68271
|
setExtensionEnv = (extensionName, extension) => {
|
|
68256
68272
|
for (const key of Object.keys(extension ?? {})) {
|
|
68257
68273
|
if (extension[key]) {
|
|
@@ -68437,6 +68453,12 @@ var init_set_env = __esm({
|
|
|
68437
68453
|
if (config.brand) {
|
|
68438
68454
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
68439
68455
|
}
|
|
68456
|
+
if (config.brand2) {
|
|
68457
|
+
process.env[`${prefix}BRAND2`] = config.brand2;
|
|
68458
|
+
}
|
|
68459
|
+
if (config.brand3) {
|
|
68460
|
+
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
68461
|
+
}
|
|
68440
68462
|
if (config.accent) {
|
|
68441
68463
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
68442
68464
|
}
|
|
@@ -68475,6 +68497,12 @@ var init_set_env = __esm({
|
|
|
68475
68497
|
if (config.brand) {
|
|
68476
68498
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
68477
68499
|
}
|
|
68500
|
+
if (config.brand2) {
|
|
68501
|
+
process.env[`${prefix}BRAND2`] = config.brand2;
|
|
68502
|
+
}
|
|
68503
|
+
if (config.brand3) {
|
|
68504
|
+
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
68505
|
+
}
|
|
68478
68506
|
if (config.accent) {
|
|
68479
68507
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
68480
68508
|
}
|
|
@@ -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
|
}
|