@storm-software/config 1.137.15 → 1.137.16
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.15](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.15) (03/28/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **build-tools:** Added `INTERNAL_PACKAGES` centralized list of organization packages ([f87d57141](https://github.com/storm-software/storm-ops/commit/f87d57141))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **testing-tools** to **v1.119.136**
|
|
14
|
+
|
|
5
15
|
## [1.137.14](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.14) (03/26/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,24 +54,6 @@ 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
|
-
} | {
|
|
75
57
|
dark: {
|
|
76
58
|
foreground?: string | undefined;
|
|
77
59
|
background?: string | undefined;
|
|
@@ -110,7 +92,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
110
92
|
negative?: string | undefined;
|
|
111
93
|
gradient?: string[] | undefined;
|
|
112
94
|
};
|
|
113
|
-
} |
|
|
95
|
+
} | {
|
|
114
96
|
dark?: string | undefined;
|
|
115
97
|
light?: string | undefined;
|
|
116
98
|
brand?: string | undefined;
|
|
@@ -128,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
128
110
|
positive?: string | undefined;
|
|
129
111
|
negative?: string | undefined;
|
|
130
112
|
gradient?: string[] | undefined;
|
|
131
|
-
} | {
|
|
113
|
+
} | Record<string, {
|
|
132
114
|
dark: {
|
|
133
115
|
foreground?: string | undefined;
|
|
134
116
|
background?: string | undefined;
|
|
@@ -167,6 +149,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
167
149
|
negative?: string | undefined;
|
|
168
150
|
gradient?: string[] | undefined;
|
|
169
151
|
};
|
|
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?: "success" | "info" | "debug" | "fatal" | "performance" | "silent" | "error" | "warn" | "trace" | "all" | undefined;
|
|
190
190
|
skipConfigLogging?: boolean | undefined;
|
|
191
191
|
registry?: {
|
|
192
192
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -54,24 +54,6 @@ 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
|
-
} | {
|
|
75
57
|
dark: {
|
|
76
58
|
foreground?: string | undefined;
|
|
77
59
|
background?: string | undefined;
|
|
@@ -110,7 +92,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
110
92
|
negative?: string | undefined;
|
|
111
93
|
gradient?: string[] | undefined;
|
|
112
94
|
};
|
|
113
|
-
} |
|
|
95
|
+
} | {
|
|
114
96
|
dark?: string | undefined;
|
|
115
97
|
light?: string | undefined;
|
|
116
98
|
brand?: string | undefined;
|
|
@@ -128,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
128
110
|
positive?: string | undefined;
|
|
129
111
|
negative?: string | undefined;
|
|
130
112
|
gradient?: string[] | undefined;
|
|
131
|
-
} | {
|
|
113
|
+
} | Record<string, {
|
|
132
114
|
dark: {
|
|
133
115
|
foreground?: string | undefined;
|
|
134
116
|
background?: string | undefined;
|
|
@@ -167,6 +149,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
167
149
|
negative?: string | undefined;
|
|
168
150
|
gradient?: string[] | undefined;
|
|
169
151
|
};
|
|
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?: "success" | "info" | "debug" | "fatal" | "performance" | "silent" | "error" | "warn" | "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";
|
|
347
346
|
success: "success";
|
|
348
|
-
silent: "silent";
|
|
349
|
-
fatal: "fatal";
|
|
350
|
-
warn: "warn";
|
|
351
347
|
info: "info";
|
|
352
|
-
performance: "performance";
|
|
353
348
|
debug: "debug";
|
|
349
|
+
fatal: "fatal";
|
|
350
|
+
performance: "performance";
|
|
351
|
+
silent: "silent";
|
|
352
|
+
error: "error";
|
|
353
|
+
warn: "warn";
|
|
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";
|
|
439
438
|
success: "success";
|
|
440
|
-
silent: "silent";
|
|
441
|
-
fatal: "fatal";
|
|
442
|
-
warn: "warn";
|
|
443
439
|
info: "info";
|
|
444
|
-
performance: "performance";
|
|
445
440
|
debug: "debug";
|
|
441
|
+
fatal: "fatal";
|
|
442
|
+
performance: "performance";
|
|
443
|
+
silent: "silent";
|
|
444
|
+
error: "error";
|
|
445
|
+
warn: "warn";
|
|
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";
|
|
347
346
|
success: "success";
|
|
348
|
-
silent: "silent";
|
|
349
|
-
fatal: "fatal";
|
|
350
|
-
warn: "warn";
|
|
351
347
|
info: "info";
|
|
352
|
-
performance: "performance";
|
|
353
348
|
debug: "debug";
|
|
349
|
+
fatal: "fatal";
|
|
350
|
+
performance: "performance";
|
|
351
|
+
silent: "silent";
|
|
352
|
+
error: "error";
|
|
353
|
+
warn: "warn";
|
|
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";
|
|
439
438
|
success: "success";
|
|
440
|
-
silent: "silent";
|
|
441
|
-
fatal: "fatal";
|
|
442
|
-
warn: "warn";
|
|
443
439
|
info: "info";
|
|
444
|
-
performance: "performance";
|
|
445
440
|
debug: "debug";
|
|
441
|
+
fatal: "fatal";
|
|
442
|
+
performance: "performance";
|
|
443
|
+
silent: "silent";
|
|
444
|
+
error: "error";
|
|
445
|
+
warn: "warn";
|
|
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.16",
|
|
4
4
|
"type": "module",
|
|
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
|
"dependencies": { "zod": "^4.3.6" },
|
|
88
88
|
"devDependencies": { "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "c9e22f77a54addf393da062dd661a01624fea3b1"
|
|
91
91
|
}
|