@storm-software/config 1.128.7 → 1.128.9
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 +18 -0
- package/README.md +1 -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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.128.8](https://github.com/storm-software/storm-ops/releases/tag/config%401.128.8) (2025-08-28)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace package links
|
|
10
|
+
([6c5a4055c](https://github.com/storm-software/storm-ops/commit/6c5a4055c))
|
|
11
|
+
- **monorepo:** Regenerate README markdown files
|
|
12
|
+
([078f35026](https://github.com/storm-software/storm-ops/commit/078f35026))
|
|
13
|
+
|
|
14
|
+
## [1.128.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.128.7) (2025-08-27)
|
|
15
|
+
|
|
16
|
+
### Miscellaneous
|
|
17
|
+
|
|
18
|
+
- **monorepo:** Upgrade Nx to v21.4.1
|
|
19
|
+
([398bbbb03](https://github.com/storm-software/storm-ops/commit/398bbbb03))
|
|
20
|
+
- **monorepo:** Regenerate README markdown files
|
|
21
|
+
([6a176b865](https://github.com/storm-software/storm-ops/commit/6a176b865))
|
|
22
|
+
|
|
5
23
|
## [1.128.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.128.6) (2025-08-11)
|
|
6
24
|
|
|
7
25
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/define-config.d.cts
CHANGED
|
@@ -54,22 +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
|
-
warning?: string | undefined;
|
|
67
|
-
danger?: string | undefined;
|
|
68
|
-
fatal?: string | undefined;
|
|
69
|
-
positive?: string | undefined;
|
|
70
|
-
negative?: string | undefined;
|
|
71
|
-
gradient?: string[] | undefined;
|
|
72
|
-
} | {
|
|
73
57
|
dark: {
|
|
74
58
|
foreground?: string | undefined;
|
|
75
59
|
background?: string | undefined;
|
|
@@ -104,7 +88,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
104
88
|
negative?: string | undefined;
|
|
105
89
|
gradient?: string[] | undefined;
|
|
106
90
|
};
|
|
107
|
-
} |
|
|
91
|
+
} | {
|
|
108
92
|
dark?: string | undefined;
|
|
109
93
|
light?: string | undefined;
|
|
110
94
|
brand?: string | undefined;
|
|
@@ -120,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
120
104
|
positive?: string | undefined;
|
|
121
105
|
negative?: string | undefined;
|
|
122
106
|
gradient?: string[] | undefined;
|
|
123
|
-
} | {
|
|
107
|
+
} | Record<string, {
|
|
124
108
|
dark: {
|
|
125
109
|
foreground?: string | undefined;
|
|
126
110
|
background?: string | undefined;
|
|
@@ -155,6 +139,22 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
155
139
|
negative?: string | undefined;
|
|
156
140
|
gradient?: string[] | undefined;
|
|
157
141
|
};
|
|
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;
|
|
@@ -173,7 +173,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
173
173
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
174
174
|
timezone?: string | undefined;
|
|
175
175
|
locale?: string | undefined;
|
|
176
|
-
logLevel?: "
|
|
176
|
+
logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
177
177
|
skipConfigLogging?: boolean | undefined;
|
|
178
178
|
registry?: {
|
|
179
179
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -54,22 +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
|
-
warning?: string | undefined;
|
|
67
|
-
danger?: string | undefined;
|
|
68
|
-
fatal?: string | undefined;
|
|
69
|
-
positive?: string | undefined;
|
|
70
|
-
negative?: string | undefined;
|
|
71
|
-
gradient?: string[] | undefined;
|
|
72
|
-
} | {
|
|
73
57
|
dark: {
|
|
74
58
|
foreground?: string | undefined;
|
|
75
59
|
background?: string | undefined;
|
|
@@ -104,7 +88,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
104
88
|
negative?: string | undefined;
|
|
105
89
|
gradient?: string[] | undefined;
|
|
106
90
|
};
|
|
107
|
-
} |
|
|
91
|
+
} | {
|
|
108
92
|
dark?: string | undefined;
|
|
109
93
|
light?: string | undefined;
|
|
110
94
|
brand?: string | undefined;
|
|
@@ -120,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
120
104
|
positive?: string | undefined;
|
|
121
105
|
negative?: string | undefined;
|
|
122
106
|
gradient?: string[] | undefined;
|
|
123
|
-
} | {
|
|
107
|
+
} | Record<string, {
|
|
124
108
|
dark: {
|
|
125
109
|
foreground?: string | undefined;
|
|
126
110
|
background?: string | undefined;
|
|
@@ -155,6 +139,22 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
155
139
|
negative?: string | undefined;
|
|
156
140
|
gradient?: string[] | undefined;
|
|
157
141
|
};
|
|
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;
|
|
@@ -173,7 +173,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
173
173
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
174
174
|
timezone?: string | undefined;
|
|
175
175
|
locale?: string | undefined;
|
|
176
|
-
logLevel?: "
|
|
176
|
+
logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
177
177
|
skipConfigLogging?: boolean | undefined;
|
|
178
178
|
registry?: {
|
|
179
179
|
github?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -315,12 +315,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
315
315
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
316
316
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
317
317
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
318
|
-
error: "error";
|
|
319
318
|
success: "success";
|
|
320
|
-
|
|
319
|
+
info: "info";
|
|
321
320
|
fatal: "fatal";
|
|
321
|
+
silent: "silent";
|
|
322
|
+
error: "error";
|
|
322
323
|
warn: "warn";
|
|
323
|
-
info: "info";
|
|
324
324
|
debug: "debug";
|
|
325
325
|
trace: "trace";
|
|
326
326
|
all: "all";
|
|
@@ -402,12 +402,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
402
402
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
403
403
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
404
404
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
405
|
-
error: "error";
|
|
406
405
|
success: "success";
|
|
407
|
-
|
|
406
|
+
info: "info";
|
|
408
407
|
fatal: "fatal";
|
|
408
|
+
silent: "silent";
|
|
409
|
+
error: "error";
|
|
409
410
|
warn: "warn";
|
|
410
|
-
info: "info";
|
|
411
411
|
debug: "debug";
|
|
412
412
|
trace: "trace";
|
|
413
413
|
all: "all";
|
package/dist/schema.d.ts
CHANGED
|
@@ -315,12 +315,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
315
315
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
316
316
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
317
317
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
318
|
-
error: "error";
|
|
319
318
|
success: "success";
|
|
320
|
-
|
|
319
|
+
info: "info";
|
|
321
320
|
fatal: "fatal";
|
|
321
|
+
silent: "silent";
|
|
322
|
+
error: "error";
|
|
322
323
|
warn: "warn";
|
|
323
|
-
info: "info";
|
|
324
324
|
debug: "debug";
|
|
325
325
|
trace: "trace";
|
|
326
326
|
all: "all";
|
|
@@ -402,12 +402,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
402
402
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
403
403
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
404
404
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
405
|
-
error: "error";
|
|
406
405
|
success: "success";
|
|
407
|
-
|
|
406
|
+
info: "info";
|
|
408
407
|
fatal: "fatal";
|
|
408
|
+
silent: "silent";
|
|
409
|
+
error: "error";
|
|
409
410
|
warn: "warn";
|
|
410
|
-
info: "info";
|
|
411
411
|
debug: "debug";
|
|
412
412
|
trace: "trace";
|
|
413
413
|
all: "all";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.128.
|
|
3
|
+
"version": "1.128.9",
|
|
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": {
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"types": "./dist/index.d.ts",
|
|
87
87
|
"devDependencies": { "tsup": "8.4.0", "zod": "^4.0.2" },
|
|
88
88
|
"publishConfig": { "access": "public" },
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "8aea52bb5224498a26300aa258610643742e6e21"
|
|
90
90
|
}
|