@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
|
@@ -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;
|
|
@@ -67975,7 +67975,7 @@ var init_lib = __esm({
|
|
|
67975
67975
|
});
|
|
67976
67976
|
|
|
67977
67977
|
// packages/config/src/schema.ts
|
|
67978
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
67978
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, AlternateColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
67979
67979
|
var init_schema = __esm({
|
|
67980
67980
|
"packages/config/src/schema.ts"() {
|
|
67981
67981
|
init_lib();
|
|
@@ -67983,8 +67983,7 @@ var init_schema = __esm({
|
|
|
67983
67983
|
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");
|
|
67984
67984
|
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");
|
|
67985
67985
|
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");
|
|
67986
|
-
|
|
67987
|
-
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");
|
|
67986
|
+
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");
|
|
67988
67987
|
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");
|
|
67989
67988
|
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");
|
|
67990
67989
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -67996,8 +67995,7 @@ var init_schema = __esm({
|
|
|
67996
67995
|
foreground: LightColorSchema,
|
|
67997
67996
|
background: DarkColorSchema,
|
|
67998
67997
|
brand: BrandColorSchema,
|
|
67999
|
-
|
|
68000
|
-
brand3: Brand3ColorSchema,
|
|
67998
|
+
alternate: AlternateColorSchema,
|
|
68001
67999
|
accent: AccentColorSchema,
|
|
68002
68000
|
help: HelpColorSchema,
|
|
68003
68001
|
success: SuccessColorSchema,
|
|
@@ -68010,8 +68008,7 @@ var init_schema = __esm({
|
|
|
68010
68008
|
foreground: DarkColorSchema,
|
|
68011
68009
|
background: LightColorSchema,
|
|
68012
68010
|
brand: BrandColorSchema,
|
|
68013
|
-
|
|
68014
|
-
brand3: Brand3ColorSchema,
|
|
68011
|
+
alternate: AlternateColorSchema,
|
|
68015
68012
|
accent: AccentColorSchema,
|
|
68016
68013
|
help: HelpColorSchema,
|
|
68017
68014
|
success: SuccessColorSchema,
|
|
@@ -68028,8 +68025,7 @@ var init_schema = __esm({
|
|
|
68028
68025
|
dark: DarkColorSchema,
|
|
68029
68026
|
light: LightColorSchema,
|
|
68030
68027
|
brand: BrandColorSchema,
|
|
68031
|
-
|
|
68032
|
-
brand3: Brand3ColorSchema,
|
|
68028
|
+
alternate: AlternateColorSchema,
|
|
68033
68029
|
accent: AccentColorSchema,
|
|
68034
68030
|
help: HelpColorSchema,
|
|
68035
68031
|
success: SuccessColorSchema,
|
|
@@ -68157,29 +68153,25 @@ var init_get_default_config = __esm({
|
|
|
68157
68153
|
import_node_path7 = require("node:path");
|
|
68158
68154
|
init_find_workspace_root();
|
|
68159
68155
|
DEFAULT_COLOR_CONFIG = {
|
|
68160
|
-
light: {
|
|
68161
|
-
background: "#
|
|
68162
|
-
foreground: "#
|
|
68163
|
-
brand: "#1fb2a6",
|
|
68164
|
-
|
|
68165
|
-
|
|
68166
|
-
|
|
68167
|
-
|
|
68168
|
-
|
|
68169
|
-
warning: "#e3b341",
|
|
68170
|
-
error: "#a40e26"
|
|
68156
|
+
"light": {
|
|
68157
|
+
"background": "#fafafa",
|
|
68158
|
+
"foreground": "#121212",
|
|
68159
|
+
"brand": "#1fb2a6",
|
|
68160
|
+
"help": "#5C4EE5",
|
|
68161
|
+
"success": "#087f5b",
|
|
68162
|
+
"info": "#0550ae",
|
|
68163
|
+
"warning": "#e3b341",
|
|
68164
|
+
"error": "#a40e26"
|
|
68171
68165
|
},
|
|
68172
|
-
dark: {
|
|
68173
|
-
background: "#
|
|
68174
|
-
foreground: "#
|
|
68175
|
-
brand: "#
|
|
68176
|
-
|
|
68177
|
-
|
|
68178
|
-
|
|
68179
|
-
|
|
68180
|
-
|
|
68181
|
-
warning: "#F3D371",
|
|
68182
|
-
error: "#d1242f"
|
|
68166
|
+
"dark": {
|
|
68167
|
+
"background": "#22272e",
|
|
68168
|
+
"foreground": "#f0f0f0",
|
|
68169
|
+
"brand": "#3fc1b0",
|
|
68170
|
+
"help": "#5C4EE5",
|
|
68171
|
+
"success": "#10b981",
|
|
68172
|
+
"info": "#58a6ff",
|
|
68173
|
+
"warning": "#f3d371",
|
|
68174
|
+
"error": "#d1242f"
|
|
68183
68175
|
}
|
|
68184
68176
|
};
|
|
68185
68177
|
DEFAULT_STORM_CONFIG = {
|
|
@@ -68766,8 +68758,7 @@ var init_get_env = __esm({
|
|
|
68766
68758
|
dark: process.env[`${prefix}DARK`],
|
|
68767
68759
|
light: process.env[`${prefix}LIGHT`],
|
|
68768
68760
|
brand: process.env[`${prefix}BRAND`],
|
|
68769
|
-
|
|
68770
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
68761
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
68771
68762
|
accent: process.env[`${prefix}ACCENT`],
|
|
68772
68763
|
help: process.env[`${prefix}HELP`],
|
|
68773
68764
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -68790,8 +68781,7 @@ var init_get_env = __esm({
|
|
|
68790
68781
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
68791
68782
|
background: process.env[`${prefix}BACKGROUND`],
|
|
68792
68783
|
brand: process.env[`${prefix}BRAND`],
|
|
68793
|
-
|
|
68794
|
-
brand3: process.env[`${prefix}BRAND3`],
|
|
68784
|
+
alternate: process.env[`${prefix}ALTERNATE`],
|
|
68795
68785
|
accent: process.env[`${prefix}ACCENT`],
|
|
68796
68786
|
help: process.env[`${prefix}HELP`],
|
|
68797
68787
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -69002,11 +68992,8 @@ var init_set_env = __esm({
|
|
|
69002
68992
|
if (config.brand) {
|
|
69003
68993
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
69004
68994
|
}
|
|
69005
|
-
if (config.
|
|
69006
|
-
process.env[`${prefix}
|
|
69007
|
-
}
|
|
69008
|
-
if (config.brand3) {
|
|
69009
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
68995
|
+
if (config.alternate) {
|
|
68996
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
69010
68997
|
}
|
|
69011
68998
|
if (config.accent) {
|
|
69012
68999
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
@@ -69046,11 +69033,8 @@ var init_set_env = __esm({
|
|
|
69046
69033
|
if (config.brand) {
|
|
69047
69034
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
69048
69035
|
}
|
|
69049
|
-
if (config.
|
|
69050
|
-
process.env[`${prefix}
|
|
69051
|
-
}
|
|
69052
|
-
if (config.brand3) {
|
|
69053
|
-
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
69036
|
+
if (config.alternate) {
|
|
69037
|
+
process.env[`${prefix}ALTERNATE`] = config.alternate;
|
|
69054
69038
|
}
|
|
69055
69039
|
if (config.accent) {
|
|
69056
69040
|
process.env[`${prefix}ACCENT`] = config.accent;
|