@storm-software/config 1.124.4 → 1.124.6
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 +21 -0
- package/README.md +1 -1
- package/dist/define-config.d.cts +18 -18
- package/dist/define-config.d.ts +18 -18
- package/dist/schema.d.cts +2 -2
- package/dist/schema.d.ts +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.124.5](https://github.com/storm-software/storm-ops/releases/tag/config%401.124.5) (2025-06-26)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update and align workspace package dependencies
|
|
10
|
+
([4e0b79bfa](https://github.com/storm-software/storm-ops/commit/4e0b79bfa))
|
|
11
|
+
- **monorepo:** Regenerate README markdown files
|
|
12
|
+
([a8119c53b](https://github.com/storm-software/storm-ops/commit/a8119c53b))
|
|
13
|
+
|
|
14
|
+
## [1.124.4](https://github.com/storm-software/storm-ops/releases/tag/config%401.124.4) (2025-06-26)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- **config:** Simplify `ColorMapSchema` record key type
|
|
19
|
+
([9651d88e3](https://github.com/storm-software/storm-ops/commit/9651d88e3))
|
|
20
|
+
|
|
21
|
+
### Miscellaneous
|
|
22
|
+
|
|
23
|
+
- **monorepo:** Regenerate README markdown files
|
|
24
|
+
([4d805888b](https://github.com/storm-software/storm-ops/commit/4d805888b))
|
|
25
|
+
|
|
5
26
|
## [1.124.3](https://github.com/storm-software/storm-ops/releases/tag/config%401.124.3) (2025-06-22)
|
|
6
27
|
|
|
7
28
|
### 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
|
@@ -40,21 +40,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
dark?: string | undefined;
|
|
44
|
-
light?: string | undefined;
|
|
45
|
-
brand?: string | undefined;
|
|
46
|
-
alternate?: string | undefined;
|
|
47
|
-
accent?: string | undefined;
|
|
48
|
-
link?: string | undefined;
|
|
49
|
-
help?: string | undefined;
|
|
50
|
-
success?: string | undefined;
|
|
51
|
-
info?: string | undefined;
|
|
52
|
-
warning?: string | undefined;
|
|
53
|
-
danger?: string | undefined;
|
|
54
|
-
fatal?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
44
|
foreground?: string | undefined;
|
|
60
45
|
background?: string | undefined;
|
|
@@ -87,7 +72,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
87
72
|
positive?: string | undefined;
|
|
88
73
|
negative?: string | undefined;
|
|
89
74
|
};
|
|
90
|
-
} |
|
|
75
|
+
} | {
|
|
91
76
|
dark?: string | undefined;
|
|
92
77
|
light?: string | undefined;
|
|
93
78
|
brand?: string | undefined;
|
|
@@ -102,7 +87,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
102
87
|
fatal?: string | undefined;
|
|
103
88
|
positive?: string | undefined;
|
|
104
89
|
negative?: string | undefined;
|
|
105
|
-
} | {
|
|
90
|
+
} | Record<string, {
|
|
106
91
|
dark: {
|
|
107
92
|
foreground?: string | undefined;
|
|
108
93
|
background?: string | undefined;
|
|
@@ -135,6 +120,21 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
135
120
|
positive?: string | undefined;
|
|
136
121
|
negative?: string | undefined;
|
|
137
122
|
};
|
|
123
|
+
} | {
|
|
124
|
+
dark?: string | undefined;
|
|
125
|
+
light?: string | undefined;
|
|
126
|
+
brand?: string | undefined;
|
|
127
|
+
alternate?: string | undefined;
|
|
128
|
+
accent?: string | undefined;
|
|
129
|
+
link?: string | undefined;
|
|
130
|
+
help?: string | undefined;
|
|
131
|
+
success?: string | undefined;
|
|
132
|
+
info?: string | undefined;
|
|
133
|
+
warning?: string | undefined;
|
|
134
|
+
danger?: string | undefined;
|
|
135
|
+
fatal?: string | undefined;
|
|
136
|
+
positive?: string | undefined;
|
|
137
|
+
negative?: string | undefined;
|
|
138
138
|
}>;
|
|
139
139
|
$schema?: string | undefined;
|
|
140
140
|
extends?: string | string[] | undefined;
|
|
@@ -164,7 +164,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
164
164
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
165
165
|
timezone?: string | undefined;
|
|
166
166
|
locale?: string | undefined;
|
|
167
|
-
logLevel?: "error" | "success" | "
|
|
167
|
+
logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
168
168
|
skipConfigLogging?: boolean | undefined;
|
|
169
169
|
registry?: {
|
|
170
170
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -40,21 +40,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
dark?: string | undefined;
|
|
44
|
-
light?: string | undefined;
|
|
45
|
-
brand?: string | undefined;
|
|
46
|
-
alternate?: string | undefined;
|
|
47
|
-
accent?: string | undefined;
|
|
48
|
-
link?: string | undefined;
|
|
49
|
-
help?: string | undefined;
|
|
50
|
-
success?: string | undefined;
|
|
51
|
-
info?: string | undefined;
|
|
52
|
-
warning?: string | undefined;
|
|
53
|
-
danger?: string | undefined;
|
|
54
|
-
fatal?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
44
|
foreground?: string | undefined;
|
|
60
45
|
background?: string | undefined;
|
|
@@ -87,7 +72,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
87
72
|
positive?: string | undefined;
|
|
88
73
|
negative?: string | undefined;
|
|
89
74
|
};
|
|
90
|
-
} |
|
|
75
|
+
} | {
|
|
91
76
|
dark?: string | undefined;
|
|
92
77
|
light?: string | undefined;
|
|
93
78
|
brand?: string | undefined;
|
|
@@ -102,7 +87,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
102
87
|
fatal?: string | undefined;
|
|
103
88
|
positive?: string | undefined;
|
|
104
89
|
negative?: string | undefined;
|
|
105
|
-
} | {
|
|
90
|
+
} | Record<string, {
|
|
106
91
|
dark: {
|
|
107
92
|
foreground?: string | undefined;
|
|
108
93
|
background?: string | undefined;
|
|
@@ -135,6 +120,21 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
135
120
|
positive?: string | undefined;
|
|
136
121
|
negative?: string | undefined;
|
|
137
122
|
};
|
|
123
|
+
} | {
|
|
124
|
+
dark?: string | undefined;
|
|
125
|
+
light?: string | undefined;
|
|
126
|
+
brand?: string | undefined;
|
|
127
|
+
alternate?: string | undefined;
|
|
128
|
+
accent?: string | undefined;
|
|
129
|
+
link?: string | undefined;
|
|
130
|
+
help?: string | undefined;
|
|
131
|
+
success?: string | undefined;
|
|
132
|
+
info?: string | undefined;
|
|
133
|
+
warning?: string | undefined;
|
|
134
|
+
danger?: string | undefined;
|
|
135
|
+
fatal?: string | undefined;
|
|
136
|
+
positive?: string | undefined;
|
|
137
|
+
negative?: string | undefined;
|
|
138
138
|
}>;
|
|
139
139
|
$schema?: string | undefined;
|
|
140
140
|
extends?: string | string[] | undefined;
|
|
@@ -164,7 +164,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
164
164
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
165
165
|
timezone?: string | undefined;
|
|
166
166
|
locale?: string | undefined;
|
|
167
|
-
logLevel?: "error" | "success" | "
|
|
167
|
+
logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
168
168
|
skipConfigLogging?: boolean | undefined;
|
|
169
169
|
registry?: {
|
|
170
170
|
github?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -302,10 +302,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
302
302
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
303
303
|
error: "error";
|
|
304
304
|
success: "success";
|
|
305
|
-
|
|
305
|
+
info: "info";
|
|
306
306
|
fatal: "fatal";
|
|
307
|
+
silent: "silent";
|
|
307
308
|
warn: "warn";
|
|
308
|
-
info: "info";
|
|
309
309
|
debug: "debug";
|
|
310
310
|
trace: "trace";
|
|
311
311
|
all: "all";
|
package/dist/schema.d.ts
CHANGED
|
@@ -302,10 +302,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
302
302
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
303
303
|
error: "error";
|
|
304
304
|
success: "success";
|
|
305
|
-
|
|
305
|
+
info: "info";
|
|
306
306
|
fatal: "fatal";
|
|
307
|
+
silent: "silent";
|
|
307
308
|
warn: "warn";
|
|
308
|
-
info: "info";
|
|
309
309
|
debug: "debug";
|
|
310
310
|
trace: "trace";
|
|
311
311
|
all: "all";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.124.
|
|
3
|
+
"version": "1.124.6",
|
|
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": "^3.25.67" },
|
|
88
88
|
"devDependencies": { "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "e6468ab12b68fbab0ed953c76772631bdbf17694"
|
|
91
91
|
}
|