@storm-software/workspace-tools 1.184.1 → 1.184.3
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 +1 -1
- package/index.js +30 -46
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/base-executor.js +29 -45
- package/src/base/base-generator.js +29 -45
- package/src/base/index.js +29 -45
- package/src/executors/cargo-build/executor.js +29 -45
- package/src/executors/cargo-check/executor.js +29 -45
- package/src/executors/cargo-clippy/executor.js +29 -45
- package/src/executors/cargo-doc/executor.js +29 -45
- package/src/executors/cargo-format/executor.js +29 -45
- package/src/executors/clean-package/executor.js +29 -45
- package/src/executors/rolldown/executor.js +29 -45
- package/src/executors/rollup/executor.js +30 -46
- package/src/executors/size-limit/executor.js +29 -45
- package/src/executors/tsup/executor.js +29 -45
- package/src/executors/tsup-browser/executor.js +29 -45
- package/src/executors/tsup-neutral/executor.js +29 -45
- package/src/executors/tsup-node/executor.js +29 -45
- package/src/executors/typia/executor.js +29 -45
- package/src/executors/unbuild/executor.js +29 -45
- package/src/generators/browser-library/generator.js +29 -45
- package/src/generators/config-schema/generator.js +29 -45
- package/src/generators/neutral-library/generator.js +29 -45
- package/src/generators/node-library/generator.js +29 -45
- package/src/generators/preset/generator.js +29 -45
- package/src/generators/release-version/generator.js +29 -45
- package/src/utils/index.js +29 -45
|
@@ -68472,7 +68472,7 @@ var init_lib = __esm({
|
|
|
68472
68472
|
});
|
|
68473
68473
|
|
|
68474
68474
|
// packages/config/src/schema.ts
|
|
68475
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
68475
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, AlternateColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
68476
68476
|
var init_schema = __esm({
|
|
68477
68477
|
"packages/config/src/schema.ts"() {
|
|
68478
68478
|
init_lib();
|
|
@@ -68480,8 +68480,7 @@ var init_schema = __esm({
|
|
|
68480
68480
|
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");
|
|
68481
68481
|
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");
|
|
68482
68482
|
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
68483
|
-
|
|
68484
|
-
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");
|
|
68483
|
+
AlternateColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
68485
68484
|
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");
|
|
68486
68485
|
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");
|
|
68487
68486
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -68493,8 +68492,7 @@ var init_schema = __esm({
|
|
|
68493
68492
|
foreground: LightColorSchema,
|
|
68494
68493
|
background: DarkColorSchema,
|
|
68495
68494
|
brand: BrandColorSchema,
|
|
68496
|
-
|
|
68497
|
-
brand3: Brand3ColorSchema,
|
|
68495
|
+
alternate: AlternateColorSchema,
|
|
68498
68496
|
accent: AccentColorSchema,
|
|
68499
68497
|
help: HelpColorSchema,
|
|
68500
68498
|
success: SuccessColorSchema,
|
|
@@ -68507,8 +68505,7 @@ var init_schema = __esm({
|
|
|
68507
68505
|
foreground: DarkColorSchema,
|
|
68508
68506
|
background: LightColorSchema,
|
|
68509
68507
|
brand: BrandColorSchema,
|
|
68510
|
-
|
|
68511
|
-
brand3: Brand3ColorSchema,
|
|
68508
|
+
alternate: AlternateColorSchema,
|
|
68512
68509
|
accent: AccentColorSchema,
|
|
68513
68510
|
help: HelpColorSchema,
|
|
68514
68511
|
success: SuccessColorSchema,
|
|
@@ -68525,8 +68522,7 @@ var init_schema = __esm({
|
|
|
68525
68522
|
dark: DarkColorSchema,
|
|
68526
68523
|
light: LightColorSchema,
|
|
68527
68524
|
brand: BrandColorSchema,
|
|
68528
|
-
|
|
68529
|
-
brand3: Brand3ColorSchema,
|
|
68525
|
+
alternate: AlternateColorSchema,
|
|
68530
68526
|
accent: AccentColorSchema,
|
|
68531
68527
|
help: HelpColorSchema,
|
|
68532
68528
|
success: SuccessColorSchema,
|
|
@@ -68654,29 +68650,25 @@ var init_get_default_config = __esm({
|
|
|
68654
68650
|
import_node_path8 = require("node:path");
|
|
68655
68651
|
init_find_workspace_root();
|
|
68656
68652
|
DEFAULT_COLOR_CONFIG = {
|
|
68657
|
-
light: {
|
|
68658
|
-
background: "#
|
|
68659
|
-
foreground: "#
|
|
68660
|
-
brand: "#1fb2a6",
|
|
68661
|
-
|
|
68662
|
-
|
|
68663
|
-
|
|
68664
|
-
|
|
68665
|
-
|
|
68666
|
-
warning: "#e3b341",
|
|
68667
|
-
error: "#a40e26"
|
|
68653
|
+
"light": {
|
|
68654
|
+
"background": "#fafafa",
|
|
68655
|
+
"foreground": "#121212",
|
|
68656
|
+
"brand": "#1fb2a6",
|
|
68657
|
+
"help": "#5C4EE5",
|
|
68658
|
+
"success": "#087f5b",
|
|
68659
|
+
"info": "#0550ae",
|
|
68660
|
+
"warning": "#e3b341",
|
|
68661
|
+
"error": "#a40e26"
|
|
68668
68662
|
},
|
|
68669
|
-
dark: {
|
|
68670
|
-
background: "#
|
|
68671
|
-
foreground: "#
|
|
68672
|
-
brand: "#
|
|
68673
|
-
|
|
68674
|
-
|
|
68675
|
-
|
|
68676
|
-
|
|
68677
|
-
|
|
68678
|
-
warning: "#F3D371",
|
|
68679
|
-
error: "#d1242f"
|
|
68663
|
+
"dark": {
|
|
68664
|
+
"background": "#22272e",
|
|
68665
|
+
"foreground": "#f0f0f0",
|
|
68666
|
+
"brand": "#3fc1b0",
|
|
68667
|
+
"help": "#5C4EE5",
|
|
68668
|
+
"success": "#10b981",
|
|
68669
|
+
"info": "#58a6ff",
|
|
68670
|
+
"warning": "#f3d371",
|
|
68671
|
+
"error": "#d1242f"
|
|
68680
68672
|
}
|
|
68681
68673
|
};
|
|
68682
68674
|
DEFAULT_STORM_CONFIG = {
|
|
@@ -69263,8 +69255,7 @@ var init_get_env = __esm({
|
|
|
69263
69255
|
dark: process.env[`${prefix}DARK`],
|
|
69264
69256
|
light: process.env[`${prefix}LIGHT`],
|
|
69265
69257
|
brand: process.env[`${prefix}BRAND`],
|
|
69266
|
-
|
|
69267
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
69258
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
69268
69259
|
accent: process.env[`${prefix}ACCENT`],
|
|
69269
69260
|
help: process.env[`${prefix}HELP`],
|
|
69270
69261
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -69287,8 +69278,7 @@ var init_get_env = __esm({
|
|
|
69287
69278
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
69288
69279
|
background: process.env[`${prefix}BACKGROUND`],
|
|
69289
69280
|
brand: process.env[`${prefix}BRAND`],
|
|
69290
|
-
|
|
69291
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
69281
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
69292
69282
|
accent: process.env[`${prefix}ACCENT`],
|
|
69293
69283
|
help: process.env[`${prefix}HELP`],
|
|
69294
69284
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -69499,11 +69489,8 @@ var init_set_env = __esm({
|
|
|
69499
69489
|
if (config.brand) {
|
|
69500
69490
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
69501
69491
|
}
|
|
69502
|
-
if (config.
|
|
69503
|
-
process.env[`${prefix}
|
|
69504
|
-
}
|
|
69505
|
-
if (config.brand3) {
|
|
69506
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
69492
|
+
if (config.alternate) {
|
|
69493
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
69507
69494
|
}
|
|
69508
69495
|
if (config.accent) {
|
|
69509
69496
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -69543,11 +69530,8 @@ var init_set_env = __esm({
|
|
|
69543
69530
|
if (config.brand) {
|
|
69544
69531
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
69545
69532
|
}
|
|
69546
|
-
if (config.
|
|
69547
|
-
process.env[`${prefix}
|
|
69548
|
-
}
|
|
69549
|
-
if (config.brand3) {
|
|
69550
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
69533
|
+
if (config.alternate) {
|
|
69534
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
69551
69535
|
}
|
|
69552
69536
|
if (config.accent) {
|
|
69553
69537
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -66151,7 +66151,7 @@ var init_lib = __esm({
|
|
|
66151
66151
|
});
|
|
66152
66152
|
|
|
66153
66153
|
// packages/config/src/schema.ts
|
|
66154
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
66154
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, AlternateColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
66155
66155
|
var init_schema = __esm({
|
|
66156
66156
|
"packages/config/src/schema.ts"() {
|
|
66157
66157
|
init_lib();
|
|
@@ -66159,8 +66159,7 @@ var init_schema = __esm({
|
|
|
66159
66159
|
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");
|
|
66160
66160
|
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");
|
|
66161
66161
|
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
66162
|
-
|
|
66163
|
-
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");
|
|
66162
|
+
AlternateColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
66164
66163
|
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");
|
|
66165
66164
|
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");
|
|
66166
66165
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -66172,8 +66171,7 @@ var init_schema = __esm({
|
|
|
66172
66171
|
foreground: LightColorSchema,
|
|
66173
66172
|
background: DarkColorSchema,
|
|
66174
66173
|
brand: BrandColorSchema,
|
|
66175
|
-
|
|
66176
|
-
brand3: Brand3ColorSchema,
|
|
66174
|
+
alternate: AlternateColorSchema,
|
|
66177
66175
|
accent: AccentColorSchema,
|
|
66178
66176
|
help: HelpColorSchema,
|
|
66179
66177
|
success: SuccessColorSchema,
|
|
@@ -66186,8 +66184,7 @@ var init_schema = __esm({
|
|
|
66186
66184
|
foreground: DarkColorSchema,
|
|
66187
66185
|
background: LightColorSchema,
|
|
66188
66186
|
brand: BrandColorSchema,
|
|
66189
|
-
|
|
66190
|
-
brand3: Brand3ColorSchema,
|
|
66187
|
+
alternate: AlternateColorSchema,
|
|
66191
66188
|
accent: AccentColorSchema,
|
|
66192
66189
|
help: HelpColorSchema,
|
|
66193
66190
|
success: SuccessColorSchema,
|
|
@@ -66204,8 +66201,7 @@ var init_schema = __esm({
|
|
|
66204
66201
|
dark: DarkColorSchema,
|
|
66205
66202
|
light: LightColorSchema,
|
|
66206
66203
|
brand: BrandColorSchema,
|
|
66207
|
-
|
|
66208
|
-
brand3: Brand3ColorSchema,
|
|
66204
|
+
alternate: AlternateColorSchema,
|
|
66209
66205
|
accent: AccentColorSchema,
|
|
66210
66206
|
help: HelpColorSchema,
|
|
66211
66207
|
success: SuccessColorSchema,
|
|
@@ -66333,29 +66329,25 @@ var init_get_default_config = __esm({
|
|
|
66333
66329
|
import_node_path7 = require("node:path");
|
|
66334
66330
|
init_find_workspace_root();
|
|
66335
66331
|
DEFAULT_COLOR_CONFIG = {
|
|
66336
|
-
light: {
|
|
66337
|
-
background: "#
|
|
66338
|
-
foreground: "#
|
|
66339
|
-
brand: "#1fb2a6",
|
|
66340
|
-
|
|
66341
|
-
|
|
66342
|
-
|
|
66343
|
-
|
|
66344
|
-
|
|
66345
|
-
warning: "#e3b341",
|
|
66346
|
-
error: "#a40e26"
|
|
66332
|
+
"light": {
|
|
66333
|
+
"background": "#fafafa",
|
|
66334
|
+
"foreground": "#121212",
|
|
66335
|
+
"brand": "#1fb2a6",
|
|
66336
|
+
"help": "#5C4EE5",
|
|
66337
|
+
"success": "#087f5b",
|
|
66338
|
+
"info": "#0550ae",
|
|
66339
|
+
"warning": "#e3b341",
|
|
66340
|
+
"error": "#a40e26"
|
|
66347
66341
|
},
|
|
66348
|
-
dark: {
|
|
66349
|
-
background: "#
|
|
66350
|
-
foreground: "#
|
|
66351
|
-
brand: "#
|
|
66352
|
-
|
|
66353
|
-
|
|
66354
|
-
|
|
66355
|
-
|
|
66356
|
-
|
|
66357
|
-
warning: "#F3D371",
|
|
66358
|
-
error: "#d1242f"
|
|
66342
|
+
"dark": {
|
|
66343
|
+
"background": "#22272e",
|
|
66344
|
+
"foreground": "#f0f0f0",
|
|
66345
|
+
"brand": "#3fc1b0",
|
|
66346
|
+
"help": "#5C4EE5",
|
|
66347
|
+
"success": "#10b981",
|
|
66348
|
+
"info": "#58a6ff",
|
|
66349
|
+
"warning": "#f3d371",
|
|
66350
|
+
"error": "#d1242f"
|
|
66359
66351
|
}
|
|
66360
66352
|
};
|
|
66361
66353
|
DEFAULT_STORM_CONFIG = {
|
|
@@ -66942,8 +66934,7 @@ var init_get_env = __esm({
|
|
|
66942
66934
|
dark: process.env[`${prefix}DARK`],
|
|
66943
66935
|
light: process.env[`${prefix}LIGHT`],
|
|
66944
66936
|
brand: process.env[`${prefix}BRAND`],
|
|
66945
|
-
|
|
66946
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
66937
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
66947
66938
|
accent: process.env[`${prefix}ACCENT`],
|
|
66948
66939
|
help: process.env[`${prefix}HELP`],
|
|
66949
66940
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -66966,8 +66957,7 @@ var init_get_env = __esm({
|
|
|
66966
66957
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
66967
66958
|
background: process.env[`${prefix}BACKGROUND`],
|
|
66968
66959
|
brand: process.env[`${prefix}BRAND`],
|
|
66969
|
-
|
|
66970
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
66960
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
66971
66961
|
accent: process.env[`${prefix}ACCENT`],
|
|
66972
66962
|
help: process.env[`${prefix}HELP`],
|
|
66973
66963
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -67178,11 +67168,8 @@ var init_set_env = __esm({
|
|
|
67178
67168
|
if (config.brand) {
|
|
67179
67169
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
67180
67170
|
}
|
|
67181
|
-
if (config.
|
|
67182
|
-
process.env[`${prefix}
|
|
67183
|
-
}
|
|
67184
|
-
if (config.brand3) {
|
|
67185
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
67171
|
+
if (config.alternate) {
|
|
67172
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
67186
67173
|
}
|
|
67187
67174
|
if (config.accent) {
|
|
67188
67175
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -67222,11 +67209,8 @@ var init_set_env = __esm({
|
|
|
67222
67209
|
if (config.brand) {
|
|
67223
67210
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
67224
67211
|
}
|
|
67225
|
-
if (config.
|
|
67226
|
-
process.env[`${prefix}
|
|
67227
|
-
}
|
|
67228
|
-
if (config.brand3) {
|
|
67229
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
67212
|
+
if (config.alternate) {
|
|
67213
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
67230
67214
|
}
|
|
67231
67215
|
if (config.accent) {
|
|
67232
67216
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -93065,7 +93065,7 @@ var init_lib = __esm({
|
|
|
93065
93065
|
});
|
|
93066
93066
|
|
|
93067
93067
|
// packages/config/src/schema.ts
|
|
93068
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
93068
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, AlternateColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
93069
93069
|
var init_schema = __esm({
|
|
93070
93070
|
"packages/config/src/schema.ts"() {
|
|
93071
93071
|
init_lib();
|
|
@@ -93073,8 +93073,7 @@ var init_schema = __esm({
|
|
|
93073
93073
|
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");
|
|
93074
93074
|
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");
|
|
93075
93075
|
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
93076
|
-
|
|
93077
|
-
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");
|
|
93076
|
+
AlternateColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
93078
93077
|
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");
|
|
93079
93078
|
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");
|
|
93080
93079
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -93086,8 +93085,7 @@ var init_schema = __esm({
|
|
|
93086
93085
|
foreground: LightColorSchema,
|
|
93087
93086
|
background: DarkColorSchema,
|
|
93088
93087
|
brand: BrandColorSchema,
|
|
93089
|
-
|
|
93090
|
-
brand3: Brand3ColorSchema,
|
|
93088
|
+
alternate: AlternateColorSchema,
|
|
93091
93089
|
accent: AccentColorSchema,
|
|
93092
93090
|
help: HelpColorSchema,
|
|
93093
93091
|
success: SuccessColorSchema,
|
|
@@ -93100,8 +93098,7 @@ var init_schema = __esm({
|
|
|
93100
93098
|
foreground: DarkColorSchema,
|
|
93101
93099
|
background: LightColorSchema,
|
|
93102
93100
|
brand: BrandColorSchema,
|
|
93103
|
-
|
|
93104
|
-
brand3: Brand3ColorSchema,
|
|
93101
|
+
alternate: AlternateColorSchema,
|
|
93105
93102
|
accent: AccentColorSchema,
|
|
93106
93103
|
help: HelpColorSchema,
|
|
93107
93104
|
success: SuccessColorSchema,
|
|
@@ -93118,8 +93115,7 @@ var init_schema = __esm({
|
|
|
93118
93115
|
dark: DarkColorSchema,
|
|
93119
93116
|
light: LightColorSchema,
|
|
93120
93117
|
brand: BrandColorSchema,
|
|
93121
|
-
|
|
93122
|
-
brand3: Brand3ColorSchema,
|
|
93118
|
+
alternate: AlternateColorSchema,
|
|
93123
93119
|
accent: AccentColorSchema,
|
|
93124
93120
|
help: HelpColorSchema,
|
|
93125
93121
|
success: SuccessColorSchema,
|
|
@@ -93247,29 +93243,25 @@ var init_get_default_config = __esm({
|
|
|
93247
93243
|
import_node_path11 = require("node:path");
|
|
93248
93244
|
init_find_workspace_root();
|
|
93249
93245
|
DEFAULT_COLOR_CONFIG = {
|
|
93250
|
-
light: {
|
|
93251
|
-
background: "#
|
|
93252
|
-
foreground: "#
|
|
93253
|
-
brand: "#1fb2a6",
|
|
93254
|
-
|
|
93255
|
-
|
|
93256
|
-
|
|
93257
|
-
|
|
93258
|
-
|
|
93259
|
-
|
|
93260
|
-
|
|
93261
|
-
|
|
93262
|
-
|
|
93263
|
-
|
|
93264
|
-
|
|
93265
|
-
|
|
93266
|
-
|
|
93267
|
-
|
|
93268
|
-
|
|
93269
|
-
success: "#087f5b",
|
|
93270
|
-
info: "#316DCA",
|
|
93271
|
-
warning: "#F3D371",
|
|
93272
|
-
error: "#d1242f"
|
|
93246
|
+
"light": {
|
|
93247
|
+
"background": "#fafafa",
|
|
93248
|
+
"foreground": "#121212",
|
|
93249
|
+
"brand": "#1fb2a6",
|
|
93250
|
+
"help": "#5C4EE5",
|
|
93251
|
+
"success": "#087f5b",
|
|
93252
|
+
"info": "#0550ae",
|
|
93253
|
+
"warning": "#e3b341",
|
|
93254
|
+
"error": "#a40e26"
|
|
93255
|
+
},
|
|
93256
|
+
"dark": {
|
|
93257
|
+
"background": "#22272e",
|
|
93258
|
+
"foreground": "#f0f0f0",
|
|
93259
|
+
"brand": "#3fc1b0",
|
|
93260
|
+
"help": "#5C4EE5",
|
|
93261
|
+
"success": "#10b981",
|
|
93262
|
+
"info": "#58a6ff",
|
|
93263
|
+
"warning": "#f3d371",
|
|
93264
|
+
"error": "#d1242f"
|
|
93273
93265
|
}
|
|
93274
93266
|
};
|
|
93275
93267
|
DEFAULT_STORM_CONFIG = {
|
|
@@ -93856,8 +93848,7 @@ var init_get_env = __esm({
|
|
|
93856
93848
|
dark: process.env[`${prefix}DARK`],
|
|
93857
93849
|
light: process.env[`${prefix}LIGHT`],
|
|
93858
93850
|
brand: process.env[`${prefix}BRAND`],
|
|
93859
|
-
|
|
93860
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
93851
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
93861
93852
|
accent: process.env[`${prefix}ACCENT`],
|
|
93862
93853
|
help: process.env[`${prefix}HELP`],
|
|
93863
93854
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -93880,8 +93871,7 @@ var init_get_env = __esm({
|
|
|
93880
93871
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
93881
93872
|
background: process.env[`${prefix}BACKGROUND`],
|
|
93882
93873
|
brand: process.env[`${prefix}BRAND`],
|
|
93883
|
-
|
|
93884
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
93874
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
93885
93875
|
accent: process.env[`${prefix}ACCENT`],
|
|
93886
93876
|
help: process.env[`${prefix}HELP`],
|
|
93887
93877
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -94092,11 +94082,8 @@ var init_set_env = __esm({
|
|
|
94092
94082
|
if (config.brand) {
|
|
94093
94083
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
94094
94084
|
}
|
|
94095
|
-
if (config.
|
|
94096
|
-
process.env[`${prefix}
|
|
94097
|
-
}
|
|
94098
|
-
if (config.brand3) {
|
|
94099
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
94085
|
+
if (config.alternate) {
|
|
94086
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
94100
94087
|
}
|
|
94101
94088
|
if (config.accent) {
|
|
94102
94089
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -94136,11 +94123,8 @@ var init_set_env = __esm({
|
|
|
94136
94123
|
if (config.brand) {
|
|
94137
94124
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
94138
94125
|
}
|
|
94139
|
-
if (config.
|
|
94140
|
-
process.env[`${prefix}
|
|
94141
|
-
}
|
|
94142
|
-
if (config.brand3) {
|
|
94143
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
94126
|
+
if (config.alternate) {
|
|
94127
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
94144
94128
|
}
|
|
94145
94129
|
if (config.accent) {
|
|
94146
94130
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -66639,7 +66639,7 @@ var init_lib = __esm({
|
|
|
66639
66639
|
});
|
|
66640
66640
|
|
|
66641
66641
|
// packages/config/src/schema.ts
|
|
66642
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
66642
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, AlternateColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
66643
66643
|
var init_schema = __esm({
|
|
66644
66644
|
"packages/config/src/schema.ts"() {
|
|
66645
66645
|
init_lib();
|
|
@@ -66647,8 +66647,7 @@ var init_schema = __esm({
|
|
|
66647
66647
|
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");
|
|
66648
66648
|
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");
|
|
66649
66649
|
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
66650
|
-
|
|
66651
|
-
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");
|
|
66650
|
+
AlternateColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
66652
66651
|
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");
|
|
66653
66652
|
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");
|
|
66654
66653
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -66660,8 +66659,7 @@ var init_schema = __esm({
|
|
|
66660
66659
|
foreground: LightColorSchema,
|
|
66661
66660
|
background: DarkColorSchema,
|
|
66662
66661
|
brand: BrandColorSchema,
|
|
66663
|
-
|
|
66664
|
-
brand3: Brand3ColorSchema,
|
|
66662
|
+
alternate: AlternateColorSchema,
|
|
66665
66663
|
accent: AccentColorSchema,
|
|
66666
66664
|
help: HelpColorSchema,
|
|
66667
66665
|
success: SuccessColorSchema,
|
|
@@ -66674,8 +66672,7 @@ var init_schema = __esm({
|
|
|
66674
66672
|
foreground: DarkColorSchema,
|
|
66675
66673
|
background: LightColorSchema,
|
|
66676
66674
|
brand: BrandColorSchema,
|
|
66677
|
-
|
|
66678
|
-
brand3: Brand3ColorSchema,
|
|
66675
|
+
alternate: AlternateColorSchema,
|
|
66679
66676
|
accent: AccentColorSchema,
|
|
66680
66677
|
help: HelpColorSchema,
|
|
66681
66678
|
success: SuccessColorSchema,
|
|
@@ -66692,8 +66689,7 @@ var init_schema = __esm({
|
|
|
66692
66689
|
dark: DarkColorSchema,
|
|
66693
66690
|
light: LightColorSchema,
|
|
66694
66691
|
brand: BrandColorSchema,
|
|
66695
|
-
|
|
66696
|
-
brand3: Brand3ColorSchema,
|
|
66692
|
+
alternate: AlternateColorSchema,
|
|
66697
66693
|
accent: AccentColorSchema,
|
|
66698
66694
|
help: HelpColorSchema,
|
|
66699
66695
|
success: SuccessColorSchema,
|
|
@@ -66821,29 +66817,25 @@ var init_get_default_config = __esm({
|
|
|
66821
66817
|
import_node_path11 = require("node:path");
|
|
66822
66818
|
init_find_workspace_root();
|
|
66823
66819
|
DEFAULT_COLOR_CONFIG = {
|
|
66824
|
-
light: {
|
|
66825
|
-
background: "#
|
|
66826
|
-
foreground: "#
|
|
66827
|
-
brand: "#1fb2a6",
|
|
66828
|
-
|
|
66829
|
-
|
|
66830
|
-
|
|
66831
|
-
|
|
66832
|
-
|
|
66833
|
-
warning: "#e3b341",
|
|
66834
|
-
error: "#a40e26"
|
|
66820
|
+
"light": {
|
|
66821
|
+
"background": "#fafafa",
|
|
66822
|
+
"foreground": "#121212",
|
|
66823
|
+
"brand": "#1fb2a6",
|
|
66824
|
+
"help": "#5C4EE5",
|
|
66825
|
+
"success": "#087f5b",
|
|
66826
|
+
"info": "#0550ae",
|
|
66827
|
+
"warning": "#e3b341",
|
|
66828
|
+
"error": "#a40e26"
|
|
66835
66829
|
},
|
|
66836
|
-
dark: {
|
|
66837
|
-
background: "#
|
|
66838
|
-
foreground: "#
|
|
66839
|
-
brand: "#
|
|
66840
|
-
|
|
66841
|
-
|
|
66842
|
-
|
|
66843
|
-
|
|
66844
|
-
|
|
66845
|
-
warning: "#F3D371",
|
|
66846
|
-
error: "#d1242f"
|
|
66830
|
+
"dark": {
|
|
66831
|
+
"background": "#22272e",
|
|
66832
|
+
"foreground": "#f0f0f0",
|
|
66833
|
+
"brand": "#3fc1b0",
|
|
66834
|
+
"help": "#5C4EE5",
|
|
66835
|
+
"success": "#10b981",
|
|
66836
|
+
"info": "#58a6ff",
|
|
66837
|
+
"warning": "#f3d371",
|
|
66838
|
+
"error": "#d1242f"
|
|
66847
66839
|
}
|
|
66848
66840
|
};
|
|
66849
66841
|
DEFAULT_STORM_CONFIG = {
|
|
@@ -67430,8 +67422,7 @@ var init_get_env = __esm({
|
|
|
67430
67422
|
dark: process.env[`${prefix}DARK`],
|
|
67431
67423
|
light: process.env[`${prefix}LIGHT`],
|
|
67432
67424
|
brand: process.env[`${prefix}BRAND`],
|
|
67433
|
-
|
|
67434
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
67425
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
67435
67426
|
accent: process.env[`${prefix}ACCENT`],
|
|
67436
67427
|
help: process.env[`${prefix}HELP`],
|
|
67437
67428
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -67454,8 +67445,7 @@ var init_get_env = __esm({
|
|
|
67454
67445
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
67455
67446
|
background: process.env[`${prefix}BACKGROUND`],
|
|
67456
67447
|
brand: process.env[`${prefix}BRAND`],
|
|
67457
|
-
|
|
67458
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
67448
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
67459
67449
|
accent: process.env[`${prefix}ACCENT`],
|
|
67460
67450
|
help: process.env[`${prefix}HELP`],
|
|
67461
67451
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -67666,11 +67656,8 @@ var init_set_env = __esm({
|
|
|
67666
67656
|
if (config.brand) {
|
|
67667
67657
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
67668
67658
|
}
|
|
67669
|
-
if (config.
|
|
67670
|
-
process.env[`${prefix}
|
|
67671
|
-
}
|
|
67672
|
-
if (config.brand3) {
|
|
67673
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
67659
|
+
if (config.alternate) {
|
|
67660
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
67674
67661
|
}
|
|
67675
67662
|
if (config.accent) {
|
|
67676
67663
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -67710,11 +67697,8 @@ var init_set_env = __esm({
|
|
|
67710
67697
|
if (config.brand) {
|
|
67711
67698
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
67712
67699
|
}
|
|
67713
|
-
if (config.
|
|
67714
|
-
process.env[`${prefix}
|
|
67715
|
-
}
|
|
67716
|
-
if (config.brand3) {
|
|
67717
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
67700
|
+
if (config.alternate) {
|
|
67701
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
67718
67702
|
}
|
|
67719
67703
|
if (config.accent) {
|
|
67720
67704
|
process.env[`${prefix}ACCENT`] = config.accent;
|