@storm-software/workspace-tools 1.76.0 → 1.76.1
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 +12 -0
- package/index.js +13 -13
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +13 -13
- package/src/executors/rolldown/executor.js +13 -13
- package/src/executors/tsup/executor.js +13 -13
- package/src/executors/tsup-browser/executor.js +13 -13
- package/src/executors/tsup-neutral/executor.js +13 -13
- package/src/executors/tsup-node/executor.js +13 -13
- package/src/executors/typia/executor.js +13 -13
- package/src/executors/unbuild/executor.js +13 -13
- package/src/generators/browser-library/generator.js +13 -13
- package/src/generators/config-schema/generator.js +13 -13
- package/src/generators/neutral-library/generator.js +13 -13
- package/src/generators/node-library/generator.js +13 -13
- package/src/generators/preset/generator.js +13 -13
- package/src/generators/release-version/generator.js +13 -13
- package/src/utils/index.js +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.76.1 (2024-05-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **markdownlint:** Resolved issue with bad config in lint file ([95b3aba7](https://github.com/storm-software/storm-ops/commit/95b3aba7))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.76.0 (2024-05-06)
|
|
2
14
|
|
|
3
15
|
### 🚀 Features
|
package/index.js
CHANGED
|
@@ -70745,14 +70745,14 @@ var init_lib = __esm({
|
|
|
70745
70745
|
});
|
|
70746
70746
|
|
|
70747
70747
|
// packages/config/src/schema.ts
|
|
70748
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema,
|
|
70748
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
70749
70749
|
var init_schema = __esm({
|
|
70750
70750
|
"packages/config/src/schema.ts"() {
|
|
70751
70751
|
init_lib();
|
|
70752
70752
|
DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
|
|
70753
70753
|
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");
|
|
70754
70754
|
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The first brand specific color of the workspace");
|
|
70755
|
-
|
|
70755
|
+
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");
|
|
70756
70756
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
70757
70757
|
InfoColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#316DCA").describe("The informational color of the workspace");
|
|
70758
70758
|
WarningColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#fcc419").describe("The warning color of the workspace");
|
|
@@ -70762,7 +70762,7 @@ var init_schema = __esm({
|
|
|
70762
70762
|
foreground: LightColorSchema,
|
|
70763
70763
|
background: DarkColorSchema,
|
|
70764
70764
|
brand: BrandColorSchema,
|
|
70765
|
-
|
|
70765
|
+
help: HelpColorSchema,
|
|
70766
70766
|
success: SuccessColorSchema,
|
|
70767
70767
|
info: InfoColorSchema,
|
|
70768
70768
|
warning: WarningColorSchema,
|
|
@@ -70773,7 +70773,7 @@ var init_schema = __esm({
|
|
|
70773
70773
|
foreground: DarkColorSchema,
|
|
70774
70774
|
background: LightColorSchema,
|
|
70775
70775
|
brand: BrandColorSchema,
|
|
70776
|
-
|
|
70776
|
+
help: HelpColorSchema,
|
|
70777
70777
|
success: SuccessColorSchema,
|
|
70778
70778
|
info: InfoColorSchema,
|
|
70779
70779
|
warning: WarningColorSchema,
|
|
@@ -70788,7 +70788,7 @@ var init_schema = __esm({
|
|
|
70788
70788
|
dark: DarkColorSchema,
|
|
70789
70789
|
light: LightColorSchema,
|
|
70790
70790
|
brand: BrandColorSchema,
|
|
70791
|
-
|
|
70791
|
+
help: HelpColorSchema,
|
|
70792
70792
|
success: SuccessColorSchema,
|
|
70793
70793
|
info: InfoColorSchema,
|
|
70794
70794
|
warning: WarningColorSchema,
|
|
@@ -70908,7 +70908,7 @@ var init_get_default_config = __esm({
|
|
|
70908
70908
|
background: "#f4f4f5",
|
|
70909
70909
|
foreground: "#1d232a",
|
|
70910
70910
|
brand: "#1fb2a6",
|
|
70911
|
-
|
|
70911
|
+
help: "#8250df",
|
|
70912
70912
|
success: "#087f5b",
|
|
70913
70913
|
info: "#0550ae",
|
|
70914
70914
|
warning: "#e3b341",
|
|
@@ -70918,7 +70918,7 @@ var init_get_default_config = __esm({
|
|
|
70918
70918
|
background: "#22272E",
|
|
70919
70919
|
foreground: "#fcfcf5",
|
|
70920
70920
|
brand: "#1fb2a6",
|
|
70921
|
-
|
|
70921
|
+
help: "#8256D0",
|
|
70922
70922
|
success: "#087f5b",
|
|
70923
70923
|
info: "#316DCA",
|
|
70924
70924
|
warning: "#F3D371",
|
|
@@ -73142,7 +73142,7 @@ var init_get_env = __esm({
|
|
|
73142
73142
|
dark: process.env[`${prefix}DARK`],
|
|
73143
73143
|
light: process.env[`${prefix}LIGHT`],
|
|
73144
73144
|
brand: process.env[`${prefix}BRAND`],
|
|
73145
|
-
|
|
73145
|
+
help: process.env[`${prefix}HELP`],
|
|
73146
73146
|
success: process.env[`${prefix}SUCCESS`],
|
|
73147
73147
|
info: process.env[`${prefix}INFO`],
|
|
73148
73148
|
warning: process.env[`${prefix}WARNING`],
|
|
@@ -73163,7 +73163,7 @@ var init_get_env = __esm({
|
|
|
73163
73163
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
73164
73164
|
background: process.env[`${prefix}BACKGROUND`],
|
|
73165
73165
|
brand: process.env[`${prefix}BRAND`],
|
|
73166
|
-
|
|
73166
|
+
help: process.env[`${prefix}HELP`],
|
|
73167
73167
|
success: process.env[`${prefix}SUCCESS`],
|
|
73168
73168
|
info: process.env[`${prefix}INFO`],
|
|
73169
73169
|
warning: process.env[`${prefix}WARNING`],
|
|
@@ -73341,8 +73341,8 @@ var init_set_env = __esm({
|
|
|
73341
73341
|
if (config.brand) {
|
|
73342
73342
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
73343
73343
|
}
|
|
73344
|
-
if (config.
|
|
73345
|
-
process.env[`${prefix}
|
|
73344
|
+
if (config.help) {
|
|
73345
|
+
process.env[`${prefix}HELP`] = config.help;
|
|
73346
73346
|
}
|
|
73347
73347
|
if (config.success) {
|
|
73348
73348
|
process.env[`${prefix}SUCCESS`] = config.success;
|
|
@@ -73376,8 +73376,8 @@ var init_set_env = __esm({
|
|
|
73376
73376
|
if (config.brand) {
|
|
73377
73377
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
73378
73378
|
}
|
|
73379
|
-
if (config.
|
|
73380
|
-
process.env[`${prefix}
|
|
73379
|
+
if (config.help) {
|
|
73380
|
+
process.env[`${prefix}HELP`] = config.help;
|
|
73381
73381
|
}
|
|
73382
73382
|
if (config.success) {
|
|
73383
73383
|
process.env[`${prefix}SUCCESS`] = config.success;
|