@storm-software/config 1.134.65 → 1.134.67
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 +17 -0
- package/README.md +2 -1
- package/dist/define-config.d.cts +19 -19
- package/dist/define-config.d.ts +19 -19
- package/dist/schema.d.cts +6 -6
- package/dist/schema.d.ts +6 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.134.66](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.66) (12/15/2025)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace packages' dependencies
|
|
10
|
+
([104422be0](https://github.com/storm-software/storm-ops/commit/104422be0))
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated **testing-tools** to **v1.119.65**
|
|
15
|
+
|
|
16
|
+
## [1.134.65](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.65) (12/08/2025)
|
|
17
|
+
|
|
18
|
+
### Updated Dependencies
|
|
19
|
+
|
|
20
|
+
- Updated **testing-tools** to **v1.119.64**
|
|
21
|
+
|
|
5
22
|
## [1.134.64](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.64) (12/08/2025)
|
|
6
23
|
|
|
7
24
|
### Updated Dependencies
|
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 -->
|
|
@@ -46,6 +46,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
46
46
|
|
|
47
47
|
<!-- START doctoc -->
|
|
48
48
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
49
|
+
|
|
49
50
|
## Table of Contents
|
|
50
51
|
|
|
51
52
|
- [Storm Configuration Package](#storm-configuration-package)
|
package/dist/define-config.d.cts
CHANGED
|
@@ -54,6 +54,22 @@ 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
|
+
warning?: string | undefined;
|
|
67
|
+
danger?: string | undefined;
|
|
68
|
+
fatal?: string | undefined;
|
|
69
|
+
positive?: string | undefined;
|
|
70
|
+
negative?: string | undefined;
|
|
71
|
+
gradient?: string[] | undefined;
|
|
72
|
+
} | {
|
|
57
73
|
dark: {
|
|
58
74
|
foreground?: string | undefined;
|
|
59
75
|
background?: string | undefined;
|
|
@@ -88,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
88
104
|
negative?: string | undefined;
|
|
89
105
|
gradient?: string[] | undefined;
|
|
90
106
|
};
|
|
91
|
-
} | {
|
|
107
|
+
} | Record<string, {
|
|
92
108
|
dark?: string | undefined;
|
|
93
109
|
light?: string | undefined;
|
|
94
110
|
brand?: string | undefined;
|
|
@@ -104,7 +120,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
104
120
|
positive?: string | undefined;
|
|
105
121
|
negative?: string | undefined;
|
|
106
122
|
gradient?: string[] | undefined;
|
|
107
|
-
} |
|
|
123
|
+
} | {
|
|
108
124
|
dark: {
|
|
109
125
|
foreground?: string | undefined;
|
|
110
126
|
background?: string | undefined;
|
|
@@ -139,22 +155,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
139
155
|
negative?: string | undefined;
|
|
140
156
|
gradient?: string[] | undefined;
|
|
141
157
|
};
|
|
142
|
-
} | {
|
|
143
|
-
dark?: string | undefined;
|
|
144
|
-
light?: string | undefined;
|
|
145
|
-
brand?: string | undefined;
|
|
146
|
-
alternate?: string | undefined;
|
|
147
|
-
accent?: string | undefined;
|
|
148
|
-
link?: string | undefined;
|
|
149
|
-
help?: string | undefined;
|
|
150
|
-
success?: string | undefined;
|
|
151
|
-
info?: string | undefined;
|
|
152
|
-
warning?: string | undefined;
|
|
153
|
-
danger?: string | undefined;
|
|
154
|
-
fatal?: string | undefined;
|
|
155
|
-
positive?: string | undefined;
|
|
156
|
-
negative?: string | undefined;
|
|
157
|
-
gradient?: string[] | undefined;
|
|
158
158
|
}>;
|
|
159
159
|
$schema?: string | undefined;
|
|
160
160
|
extends?: string | string[] | undefined;
|
|
@@ -174,7 +174,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
174
174
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
175
175
|
timezone?: string | undefined;
|
|
176
176
|
locale?: string | undefined;
|
|
177
|
-
logLevel?: "
|
|
177
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
|
|
178
178
|
skipConfigLogging?: boolean | undefined;
|
|
179
179
|
registry?: {
|
|
180
180
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -54,6 +54,22 @@ 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
|
+
warning?: string | undefined;
|
|
67
|
+
danger?: string | undefined;
|
|
68
|
+
fatal?: string | undefined;
|
|
69
|
+
positive?: string | undefined;
|
|
70
|
+
negative?: string | undefined;
|
|
71
|
+
gradient?: string[] | undefined;
|
|
72
|
+
} | {
|
|
57
73
|
dark: {
|
|
58
74
|
foreground?: string | undefined;
|
|
59
75
|
background?: string | undefined;
|
|
@@ -88,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
88
104
|
negative?: string | undefined;
|
|
89
105
|
gradient?: string[] | undefined;
|
|
90
106
|
};
|
|
91
|
-
} | {
|
|
107
|
+
} | Record<string, {
|
|
92
108
|
dark?: string | undefined;
|
|
93
109
|
light?: string | undefined;
|
|
94
110
|
brand?: string | undefined;
|
|
@@ -104,7 +120,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
104
120
|
positive?: string | undefined;
|
|
105
121
|
negative?: string | undefined;
|
|
106
122
|
gradient?: string[] | undefined;
|
|
107
|
-
} |
|
|
123
|
+
} | {
|
|
108
124
|
dark: {
|
|
109
125
|
foreground?: string | undefined;
|
|
110
126
|
background?: string | undefined;
|
|
@@ -139,22 +155,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
139
155
|
negative?: string | undefined;
|
|
140
156
|
gradient?: string[] | undefined;
|
|
141
157
|
};
|
|
142
|
-
} | {
|
|
143
|
-
dark?: string | undefined;
|
|
144
|
-
light?: string | undefined;
|
|
145
|
-
brand?: string | undefined;
|
|
146
|
-
alternate?: string | undefined;
|
|
147
|
-
accent?: string | undefined;
|
|
148
|
-
link?: string | undefined;
|
|
149
|
-
help?: string | undefined;
|
|
150
|
-
success?: string | undefined;
|
|
151
|
-
info?: string | undefined;
|
|
152
|
-
warning?: string | undefined;
|
|
153
|
-
danger?: string | undefined;
|
|
154
|
-
fatal?: string | undefined;
|
|
155
|
-
positive?: string | undefined;
|
|
156
|
-
negative?: string | undefined;
|
|
157
|
-
gradient?: string[] | undefined;
|
|
158
158
|
}>;
|
|
159
159
|
$schema?: string | undefined;
|
|
160
160
|
extends?: string | string[] | undefined;
|
|
@@ -174,7 +174,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
174
174
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
175
175
|
timezone?: string | undefined;
|
|
176
176
|
locale?: string | undefined;
|
|
177
|
-
logLevel?: "
|
|
177
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
|
|
178
178
|
skipConfigLogging?: boolean | undefined;
|
|
179
179
|
registry?: {
|
|
180
180
|
github?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -319,12 +319,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
319
319
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
320
320
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
321
321
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
322
|
+
error: "error";
|
|
322
323
|
success: "success";
|
|
323
|
-
info: "info";
|
|
324
|
-
fatal: "fatal";
|
|
325
324
|
silent: "silent";
|
|
326
|
-
|
|
325
|
+
fatal: "fatal";
|
|
327
326
|
warn: "warn";
|
|
327
|
+
info: "info";
|
|
328
328
|
debug: "debug";
|
|
329
329
|
trace: "trace";
|
|
330
330
|
all: "all";
|
|
@@ -410,12 +410,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
410
410
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
411
411
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
412
412
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
413
|
+
error: "error";
|
|
413
414
|
success: "success";
|
|
414
|
-
info: "info";
|
|
415
|
-
fatal: "fatal";
|
|
416
415
|
silent: "silent";
|
|
417
|
-
|
|
416
|
+
fatal: "fatal";
|
|
418
417
|
warn: "warn";
|
|
418
|
+
info: "info";
|
|
419
419
|
debug: "debug";
|
|
420
420
|
trace: "trace";
|
|
421
421
|
all: "all";
|
package/dist/schema.d.ts
CHANGED
|
@@ -319,12 +319,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
319
319
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
320
320
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
321
321
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
322
|
+
error: "error";
|
|
322
323
|
success: "success";
|
|
323
|
-
info: "info";
|
|
324
|
-
fatal: "fatal";
|
|
325
324
|
silent: "silent";
|
|
326
|
-
|
|
325
|
+
fatal: "fatal";
|
|
327
326
|
warn: "warn";
|
|
327
|
+
info: "info";
|
|
328
328
|
debug: "debug";
|
|
329
329
|
trace: "trace";
|
|
330
330
|
all: "all";
|
|
@@ -410,12 +410,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
410
410
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
411
411
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
412
412
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
413
|
+
error: "error";
|
|
413
414
|
success: "success";
|
|
414
|
-
info: "info";
|
|
415
|
-
fatal: "fatal";
|
|
416
415
|
silent: "silent";
|
|
417
|
-
|
|
416
|
+
fatal: "fatal";
|
|
418
417
|
warn: "warn";
|
|
418
|
+
info: "info";
|
|
419
419
|
debug: "debug";
|
|
420
420
|
trace: "trace";
|
|
421
421
|
all: "all";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.134.
|
|
3
|
+
"version": "1.134.67",
|
|
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": {
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
"types": "./dist/index.d.ts",
|
|
87
|
-
"dependencies": { "zod": "^4.
|
|
87
|
+
"dependencies": { "zod": "^4.2.0" },
|
|
88
88
|
"devDependencies": { "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "58754a0336790191cb3c0ead5b28fef7db35fac3"
|
|
91
91
|
}
|