@storm-software/config 1.137.19 → 1.137.20
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 +10 -0
- package/README.md +1 -1
- package/dist/define-config.d.cts +21 -21
- package/dist/define-config.d.ts +21 -21
- package/dist/schema.d.cts +10 -10
- package/dist/schema.d.ts +10 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.137.19](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.19) (04/01/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate `README.md` files ([cf5149751](https://github.com/storm-software/storm-ops/commit/cf5149751))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **testing-tools** to **v1.119.140**
|
|
14
|
+
|
|
5
15
|
## [1.137.18](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.18) (03/31/2026)
|
|
6
16
|
|
|
7
17
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/dist/define-config.d.cts
CHANGED
|
@@ -54,6 +54,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
54
54
|
build?: string | undefined;
|
|
55
55
|
};
|
|
56
56
|
colors: {
|
|
57
|
+
dark?: string | undefined;
|
|
58
|
+
light?: string | undefined;
|
|
59
|
+
brand?: string | undefined;
|
|
60
|
+
alternate?: string | undefined;
|
|
61
|
+
accent?: string | undefined;
|
|
62
|
+
link?: string | undefined;
|
|
63
|
+
help?: string | undefined;
|
|
64
|
+
success?: string | undefined;
|
|
65
|
+
info?: string | undefined;
|
|
66
|
+
debug?: string | undefined;
|
|
67
|
+
warning?: string | undefined;
|
|
68
|
+
danger?: string | undefined;
|
|
69
|
+
fatal?: string | undefined;
|
|
70
|
+
performance?: string | undefined;
|
|
71
|
+
positive?: string | undefined;
|
|
72
|
+
negative?: string | undefined;
|
|
73
|
+
gradient?: string[] | undefined;
|
|
74
|
+
} | {
|
|
57
75
|
dark: {
|
|
58
76
|
foreground?: string | undefined;
|
|
59
77
|
background?: string | undefined;
|
|
@@ -92,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
92
110
|
negative?: string | undefined;
|
|
93
111
|
gradient?: string[] | undefined;
|
|
94
112
|
};
|
|
95
|
-
} | {
|
|
113
|
+
} | Record<string, {
|
|
96
114
|
dark?: string | undefined;
|
|
97
115
|
light?: string | undefined;
|
|
98
116
|
brand?: string | undefined;
|
|
@@ -110,7 +128,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
110
128
|
positive?: string | undefined;
|
|
111
129
|
negative?: string | undefined;
|
|
112
130
|
gradient?: string[] | undefined;
|
|
113
|
-
} |
|
|
131
|
+
} | {
|
|
114
132
|
dark: {
|
|
115
133
|
foreground?: string | undefined;
|
|
116
134
|
background?: string | undefined;
|
|
@@ -149,24 +167,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
149
167
|
negative?: string | undefined;
|
|
150
168
|
gradient?: string[] | undefined;
|
|
151
169
|
};
|
|
152
|
-
} | {
|
|
153
|
-
dark?: string | undefined;
|
|
154
|
-
light?: string | undefined;
|
|
155
|
-
brand?: string | undefined;
|
|
156
|
-
alternate?: string | undefined;
|
|
157
|
-
accent?: string | undefined;
|
|
158
|
-
link?: string | undefined;
|
|
159
|
-
help?: string | undefined;
|
|
160
|
-
success?: string | undefined;
|
|
161
|
-
info?: string | undefined;
|
|
162
|
-
debug?: string | undefined;
|
|
163
|
-
warning?: string | undefined;
|
|
164
|
-
danger?: string | undefined;
|
|
165
|
-
fatal?: string | undefined;
|
|
166
|
-
performance?: string | undefined;
|
|
167
|
-
positive?: string | undefined;
|
|
168
|
-
negative?: string | undefined;
|
|
169
|
-
gradient?: string[] | undefined;
|
|
170
170
|
}>;
|
|
171
171
|
$schema?: string | undefined;
|
|
172
172
|
extends?: string | string[] | undefined;
|
|
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
186
186
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
187
187
|
timezone?: string | undefined;
|
|
188
188
|
locale?: string | undefined;
|
|
189
|
-
logLevel?: "
|
|
189
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "performance" | "debug" | "trace" | "all" | undefined;
|
|
190
190
|
skipConfigLogging?: boolean | undefined;
|
|
191
191
|
registry?: {
|
|
192
192
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -54,6 +54,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
54
54
|
build?: string | undefined;
|
|
55
55
|
};
|
|
56
56
|
colors: {
|
|
57
|
+
dark?: string | undefined;
|
|
58
|
+
light?: string | undefined;
|
|
59
|
+
brand?: string | undefined;
|
|
60
|
+
alternate?: string | undefined;
|
|
61
|
+
accent?: string | undefined;
|
|
62
|
+
link?: string | undefined;
|
|
63
|
+
help?: string | undefined;
|
|
64
|
+
success?: string | undefined;
|
|
65
|
+
info?: string | undefined;
|
|
66
|
+
debug?: string | undefined;
|
|
67
|
+
warning?: string | undefined;
|
|
68
|
+
danger?: string | undefined;
|
|
69
|
+
fatal?: string | undefined;
|
|
70
|
+
performance?: string | undefined;
|
|
71
|
+
positive?: string | undefined;
|
|
72
|
+
negative?: string | undefined;
|
|
73
|
+
gradient?: string[] | undefined;
|
|
74
|
+
} | {
|
|
57
75
|
dark: {
|
|
58
76
|
foreground?: string | undefined;
|
|
59
77
|
background?: string | undefined;
|
|
@@ -92,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
92
110
|
negative?: string | undefined;
|
|
93
111
|
gradient?: string[] | undefined;
|
|
94
112
|
};
|
|
95
|
-
} | {
|
|
113
|
+
} | Record<string, {
|
|
96
114
|
dark?: string | undefined;
|
|
97
115
|
light?: string | undefined;
|
|
98
116
|
brand?: string | undefined;
|
|
@@ -110,7 +128,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
110
128
|
positive?: string | undefined;
|
|
111
129
|
negative?: string | undefined;
|
|
112
130
|
gradient?: string[] | undefined;
|
|
113
|
-
} |
|
|
131
|
+
} | {
|
|
114
132
|
dark: {
|
|
115
133
|
foreground?: string | undefined;
|
|
116
134
|
background?: string | undefined;
|
|
@@ -149,24 +167,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
149
167
|
negative?: string | undefined;
|
|
150
168
|
gradient?: string[] | undefined;
|
|
151
169
|
};
|
|
152
|
-
} | {
|
|
153
|
-
dark?: string | undefined;
|
|
154
|
-
light?: string | undefined;
|
|
155
|
-
brand?: string | undefined;
|
|
156
|
-
alternate?: string | undefined;
|
|
157
|
-
accent?: string | undefined;
|
|
158
|
-
link?: string | undefined;
|
|
159
|
-
help?: string | undefined;
|
|
160
|
-
success?: string | undefined;
|
|
161
|
-
info?: string | undefined;
|
|
162
|
-
debug?: string | undefined;
|
|
163
|
-
warning?: string | undefined;
|
|
164
|
-
danger?: string | undefined;
|
|
165
|
-
fatal?: string | undefined;
|
|
166
|
-
performance?: string | undefined;
|
|
167
|
-
positive?: string | undefined;
|
|
168
|
-
negative?: string | undefined;
|
|
169
|
-
gradient?: string[] | undefined;
|
|
170
170
|
}>;
|
|
171
171
|
$schema?: string | undefined;
|
|
172
172
|
extends?: string | string[] | undefined;
|
|
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
186
186
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
187
187
|
timezone?: string | undefined;
|
|
188
188
|
locale?: string | undefined;
|
|
189
|
-
logLevel?: "
|
|
189
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "performance" | "debug" | "trace" | "all" | undefined;
|
|
190
190
|
skipConfigLogging?: boolean | undefined;
|
|
191
191
|
registry?: {
|
|
192
192
|
github?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -343,14 +343,14 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
343
343
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
344
344
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
345
345
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
346
|
+
error: "error";
|
|
346
347
|
success: "success";
|
|
347
|
-
info: "info";
|
|
348
|
-
debug: "debug";
|
|
349
|
-
fatal: "fatal";
|
|
350
|
-
performance: "performance";
|
|
351
348
|
silent: "silent";
|
|
352
|
-
|
|
349
|
+
fatal: "fatal";
|
|
353
350
|
warn: "warn";
|
|
351
|
+
info: "info";
|
|
352
|
+
performance: "performance";
|
|
353
|
+
debug: "debug";
|
|
354
354
|
trace: "trace";
|
|
355
355
|
all: "all";
|
|
356
356
|
}>>;
|
|
@@ -435,14 +435,14 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
435
435
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
436
436
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
437
437
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
438
|
+
error: "error";
|
|
438
439
|
success: "success";
|
|
439
|
-
info: "info";
|
|
440
|
-
debug: "debug";
|
|
441
|
-
fatal: "fatal";
|
|
442
|
-
performance: "performance";
|
|
443
440
|
silent: "silent";
|
|
444
|
-
|
|
441
|
+
fatal: "fatal";
|
|
445
442
|
warn: "warn";
|
|
443
|
+
info: "info";
|
|
444
|
+
performance: "performance";
|
|
445
|
+
debug: "debug";
|
|
446
446
|
trace: "trace";
|
|
447
447
|
all: "all";
|
|
448
448
|
}>>;
|
package/dist/schema.d.ts
CHANGED
|
@@ -343,14 +343,14 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
343
343
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
344
344
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
345
345
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
346
|
+
error: "error";
|
|
346
347
|
success: "success";
|
|
347
|
-
info: "info";
|
|
348
|
-
debug: "debug";
|
|
349
|
-
fatal: "fatal";
|
|
350
|
-
performance: "performance";
|
|
351
348
|
silent: "silent";
|
|
352
|
-
|
|
349
|
+
fatal: "fatal";
|
|
353
350
|
warn: "warn";
|
|
351
|
+
info: "info";
|
|
352
|
+
performance: "performance";
|
|
353
|
+
debug: "debug";
|
|
354
354
|
trace: "trace";
|
|
355
355
|
all: "all";
|
|
356
356
|
}>>;
|
|
@@ -435,14 +435,14 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
435
435
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
436
436
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
437
437
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
438
|
+
error: "error";
|
|
438
439
|
success: "success";
|
|
439
|
-
info: "info";
|
|
440
|
-
debug: "debug";
|
|
441
|
-
fatal: "fatal";
|
|
442
|
-
performance: "performance";
|
|
443
440
|
silent: "silent";
|
|
444
|
-
|
|
441
|
+
fatal: "fatal";
|
|
445
442
|
warn: "warn";
|
|
443
|
+
info: "info";
|
|
444
|
+
performance: "performance";
|
|
445
|
+
debug: "debug";
|
|
446
446
|
trace: "trace";
|
|
447
447
|
all: "all";
|
|
448
448
|
}>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.137.
|
|
3
|
+
"version": "1.137.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Configuration management tools and schemas for Storm Software projects, providing a standardized approach to handle project settings and presets.",
|
|
6
6
|
"repository": {
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"devDependencies": { "tsup": "8.4.0", "zod": "^4.3.6" },
|
|
88
88
|
"peerDependencies": { "zod": "^3.25.0 || ^4.0.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "c42d6c0ae19c100006234c16e077e9a189ffcbec"
|
|
91
91
|
}
|