@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
|
@@ -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;
|
|
@@ -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;
|