@storm-software/workspace-tools 1.184.1 → 1.184.2
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 +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
|
@@ -91921,7 +91921,7 @@ var init_lib = __esm({
|
|
|
91921
91921
|
});
|
|
91922
91922
|
|
|
91923
91923
|
// packages/config/src/schema.ts
|
|
91924
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
91924
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, AlternateColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
91925
91925
|
var init_schema = __esm({
|
|
91926
91926
|
"packages/config/src/schema.ts"() {
|
|
91927
91927
|
init_lib();
|
|
@@ -91929,8 +91929,7 @@ var init_schema = __esm({
|
|
|
91929
91929
|
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");
|
|
91930
91930
|
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");
|
|
91931
91931
|
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");
|
|
91932
|
-
|
|
91933
|
-
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");
|
|
91932
|
+
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");
|
|
91934
91933
|
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");
|
|
91935
91934
|
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");
|
|
91936
91935
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -91942,8 +91941,7 @@ var init_schema = __esm({
|
|
|
91942
91941
|
foreground: LightColorSchema,
|
|
91943
91942
|
background: DarkColorSchema,
|
|
91944
91943
|
brand: BrandColorSchema,
|
|
91945
|
-
|
|
91946
|
-
brand3: Brand3ColorSchema,
|
|
91944
|
+
alternate: AlternateColorSchema,
|
|
91947
91945
|
accent: AccentColorSchema,
|
|
91948
91946
|
help: HelpColorSchema,
|
|
91949
91947
|
success: SuccessColorSchema,
|
|
@@ -91956,8 +91954,7 @@ var init_schema = __esm({
|
|
|
91956
91954
|
foreground: DarkColorSchema,
|
|
91957
91955
|
background: LightColorSchema,
|
|
91958
91956
|
brand: BrandColorSchema,
|
|
91959
|
-
|
|
91960
|
-
brand3: Brand3ColorSchema,
|
|
91957
|
+
alternate: AlternateColorSchema,
|
|
91961
91958
|
accent: AccentColorSchema,
|
|
91962
91959
|
help: HelpColorSchema,
|
|
91963
91960
|
success: SuccessColorSchema,
|
|
@@ -91974,8 +91971,7 @@ var init_schema = __esm({
|
|
|
91974
91971
|
dark: DarkColorSchema,
|
|
91975
91972
|
light: LightColorSchema,
|
|
91976
91973
|
brand: BrandColorSchema,
|
|
91977
|
-
|
|
91978
|
-
brand3: Brand3ColorSchema,
|
|
91974
|
+
alternate: AlternateColorSchema,
|
|
91979
91975
|
accent: AccentColorSchema,
|
|
91980
91976
|
help: HelpColorSchema,
|
|
91981
91977
|
success: SuccessColorSchema,
|
|
@@ -92103,29 +92099,25 @@ var init_get_default_config = __esm({
|
|
|
92103
92099
|
import_node_path7 = require("node:path");
|
|
92104
92100
|
init_find_workspace_root();
|
|
92105
92101
|
DEFAULT_COLOR_CONFIG = {
|
|
92106
|
-
light: {
|
|
92107
|
-
background: "#
|
|
92108
|
-
foreground: "#
|
|
92109
|
-
brand: "#1fb2a6",
|
|
92110
|
-
|
|
92111
|
-
|
|
92112
|
-
|
|
92113
|
-
|
|
92114
|
-
|
|
92115
|
-
warning: "#e3b341",
|
|
92116
|
-
error: "#a40e26"
|
|
92102
|
+
"light": {
|
|
92103
|
+
"background": "#fafafa",
|
|
92104
|
+
"foreground": "#121212",
|
|
92105
|
+
"brand": "#1fb2a6",
|
|
92106
|
+
"help": "#5C4EE5",
|
|
92107
|
+
"success": "#087f5b",
|
|
92108
|
+
"info": "#0550ae",
|
|
92109
|
+
"warning": "#e3b341",
|
|
92110
|
+
"error": "#a40e26"
|
|
92117
92111
|
},
|
|
92118
|
-
dark: {
|
|
92119
|
-
background: "#
|
|
92120
|
-
foreground: "#
|
|
92121
|
-
brand: "#
|
|
92122
|
-
|
|
92123
|
-
|
|
92124
|
-
|
|
92125
|
-
|
|
92126
|
-
|
|
92127
|
-
warning: "#F3D371",
|
|
92128
|
-
error: "#d1242f"
|
|
92112
|
+
"dark": {
|
|
92113
|
+
"background": "#22272e",
|
|
92114
|
+
"foreground": "#f0f0f0",
|
|
92115
|
+
"brand": "#3fc1b0",
|
|
92116
|
+
"help": "#5C4EE5",
|
|
92117
|
+
"success": "#10b981",
|
|
92118
|
+
"info": "#58a6ff",
|
|
92119
|
+
"warning": "#f3d371",
|
|
92120
|
+
"error": "#d1242f"
|
|
92129
92121
|
}
|
|
92130
92122
|
};
|
|
92131
92123
|
DEFAULT_STORM_CONFIG = {
|
|
@@ -92712,8 +92704,7 @@ var init_get_env = __esm({
|
|
|
92712
92704
|
dark: process.env[`${prefix}DARK`],
|
|
92713
92705
|
light: process.env[`${prefix}LIGHT`],
|
|
92714
92706
|
brand: process.env[`${prefix}BRAND`],
|
|
92715
|
-
|
|
92716
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
92707
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
92717
92708
|
accent: process.env[`${prefix}ACCENT`],
|
|
92718
92709
|
help: process.env[`${prefix}HELP`],
|
|
92719
92710
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -92736,8 +92727,7 @@ var init_get_env = __esm({
|
|
|
92736
92727
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
92737
92728
|
background: process.env[`${prefix}BACKGROUND`],
|
|
92738
92729
|
brand: process.env[`${prefix}BRAND`],
|
|
92739
|
-
|
|
92740
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
92730
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
92741
92731
|
accent: process.env[`${prefix}ACCENT`],
|
|
92742
92732
|
help: process.env[`${prefix}HELP`],
|
|
92743
92733
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -92948,11 +92938,8 @@ var init_set_env = __esm({
|
|
|
92948
92938
|
if (config.brand) {
|
|
92949
92939
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
92950
92940
|
}
|
|
92951
|
-
if (config.
|
|
92952
|
-
process.env[`${prefix}
|
|
92953
|
-
}
|
|
92954
|
-
if (config.brand3) {
|
|
92955
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
92941
|
+
if (config.alternate) {
|
|
92942
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
92956
92943
|
}
|
|
92957
92944
|
if (config.accent) {
|
|
92958
92945
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -92992,11 +92979,8 @@ var init_set_env = __esm({
|
|
|
92992
92979
|
if (config.brand) {
|
|
92993
92980
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
92994
92981
|
}
|
|
92995
|
-
if (config.
|
|
92996
|
-
process.env[`${prefix}
|
|
92997
|
-
}
|
|
92998
|
-
if (config.brand3) {
|
|
92999
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
92982
|
+
if (config.alternate) {
|
|
92983
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
93000
92984
|
}
|
|
93001
92985
|
if (config.accent) {
|
|
93002
92986
|
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;
|
|
@@ -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;
|
|
@@ -3961,7 +3961,7 @@ var init_lib = __esm({
|
|
|
3961
3961
|
});
|
|
3962
3962
|
|
|
3963
3963
|
// packages/config/src/schema.ts
|
|
3964
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
3964
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, AlternateColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
3965
3965
|
var init_schema = __esm({
|
|
3966
3966
|
"packages/config/src/schema.ts"() {
|
|
3967
3967
|
init_lib();
|
|
@@ -3969,8 +3969,7 @@ var init_schema = __esm({
|
|
|
3969
3969
|
DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
|
|
3970
3970
|
LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
3971
3971
|
BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
3972
|
-
|
|
3973
|
-
Brand3ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
3972
|
+
AlternateColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
3974
3973
|
AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
3975
3974
|
HelpColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
|
|
3976
3975
|
SuccessColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -3982,8 +3981,7 @@ var init_schema = __esm({
|
|
|
3982
3981
|
foreground: LightColorSchema,
|
|
3983
3982
|
background: DarkColorSchema,
|
|
3984
3983
|
brand: BrandColorSchema,
|
|
3985
|
-
|
|
3986
|
-
brand3: Brand3ColorSchema,
|
|
3984
|
+
alternate: AlternateColorSchema,
|
|
3987
3985
|
accent: AccentColorSchema,
|
|
3988
3986
|
help: HelpColorSchema,
|
|
3989
3987
|
success: SuccessColorSchema,
|
|
@@ -3996,8 +3994,7 @@ var init_schema = __esm({
|
|
|
3996
3994
|
foreground: DarkColorSchema,
|
|
3997
3995
|
background: LightColorSchema,
|
|
3998
3996
|
brand: BrandColorSchema,
|
|
3999
|
-
|
|
4000
|
-
brand3: Brand3ColorSchema,
|
|
3997
|
+
alternate: AlternateColorSchema,
|
|
4001
3998
|
accent: AccentColorSchema,
|
|
4002
3999
|
help: HelpColorSchema,
|
|
4003
4000
|
success: SuccessColorSchema,
|
|
@@ -4014,8 +4011,7 @@ var init_schema = __esm({
|
|
|
4014
4011
|
dark: DarkColorSchema,
|
|
4015
4012
|
light: LightColorSchema,
|
|
4016
4013
|
brand: BrandColorSchema,
|
|
4017
|
-
|
|
4018
|
-
brand3: Brand3ColorSchema,
|
|
4014
|
+
alternate: AlternateColorSchema,
|
|
4019
4015
|
accent: AccentColorSchema,
|
|
4020
4016
|
help: HelpColorSchema,
|
|
4021
4017
|
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;
|