@storm-software/config 1.125.14 → 1.125.17
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 +47 -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,53 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.125.16](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.16) (2025-07-31)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **git-tools:** Resolve issue with incorrect log formatting
|
|
10
|
+
([062583d84](https://github.com/storm-software/storm-ops/commit/062583d84))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([e5c02a04d](https://github.com/storm-software/storm-ops/commit/e5c02a04d))
|
|
16
|
+
|
|
17
|
+
## [1.125.15](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.15) (2025-07-31)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous
|
|
20
|
+
|
|
21
|
+
- **monorepo:** Update TypeScript to v5.9.2
|
|
22
|
+
([d4a90784d](https://github.com/storm-software/storm-ops/commit/d4a90784d))
|
|
23
|
+
- **monorepo:** Regenerate README markdown files
|
|
24
|
+
([18c227394](https://github.com/storm-software/storm-ops/commit/18c227394))
|
|
25
|
+
- **monorepo:** Update workspace package links
|
|
26
|
+
([3ec10b48b](https://github.com/storm-software/storm-ops/commit/3ec10b48b))
|
|
27
|
+
- **monorepo:** Regenerate README markdown files
|
|
28
|
+
([8aeb77070](https://github.com/storm-software/storm-ops/commit/8aeb77070))
|
|
29
|
+
- **monorepo:** Regenerate workspace repository packages
|
|
30
|
+
([a78abe68e](https://github.com/storm-software/storm-ops/commit/a78abe68e))
|
|
31
|
+
- **monorepo:** Regenerate README markdown files
|
|
32
|
+
([b7b8fec51](https://github.com/storm-software/storm-ops/commit/b7b8fec51))
|
|
33
|
+
- **eslint:** Update package dependencies
|
|
34
|
+
([a6eaee75a](https://github.com/storm-software/storm-ops/commit/a6eaee75a))
|
|
35
|
+
- **monorepo:** Regenerate README markdown files
|
|
36
|
+
([d02c46b78](https://github.com/storm-software/storm-ops/commit/d02c46b78))
|
|
37
|
+
- **git-tools:** Ensure dependencies are marked `external` by default for `bin`
|
|
38
|
+
build
|
|
39
|
+
([b6c66aae5](https://github.com/storm-software/storm-ops/commit/b6c66aae5))
|
|
40
|
+
- **monorepo:** Regenerate README markdown files
|
|
41
|
+
([fa4b5a24f](https://github.com/storm-software/storm-ops/commit/fa4b5a24f))
|
|
42
|
+
|
|
43
|
+
## [1.125.14](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.14) (2025-07-14)
|
|
44
|
+
|
|
45
|
+
### Miscellaneous
|
|
46
|
+
|
|
47
|
+
- **monorepo:** Update workspace package links
|
|
48
|
+
([aa3c5e120](https://github.com/storm-software/storm-ops/commit/aa3c5e120))
|
|
49
|
+
- **monorepo:** Regenerate README markdown files
|
|
50
|
+
([11ac201a7](https://github.com/storm-software/storm-ops/commit/11ac201a7))
|
|
51
|
+
|
|
5
52
|
## [1.125.13](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.13) (2025-07-14)
|
|
6
53
|
|
|
7
54
|
### 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,6 +40,21 @@ 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
|
+
} | {
|
|
43
58
|
dark: {
|
|
44
59
|
foreground?: string | undefined;
|
|
45
60
|
background?: string | undefined;
|
|
@@ -72,7 +87,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
72
87
|
positive?: string | undefined;
|
|
73
88
|
negative?: string | undefined;
|
|
74
89
|
};
|
|
75
|
-
} | {
|
|
90
|
+
} | Record<string, {
|
|
76
91
|
dark?: string | undefined;
|
|
77
92
|
light?: string | undefined;
|
|
78
93
|
brand?: string | undefined;
|
|
@@ -87,7 +102,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
87
102
|
fatal?: string | undefined;
|
|
88
103
|
positive?: string | undefined;
|
|
89
104
|
negative?: string | undefined;
|
|
90
|
-
} |
|
|
105
|
+
} | {
|
|
91
106
|
dark: {
|
|
92
107
|
foreground?: string | undefined;
|
|
93
108
|
background?: string | undefined;
|
|
@@ -120,21 +135,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
120
135
|
positive?: string | undefined;
|
|
121
136
|
negative?: string | undefined;
|
|
122
137
|
};
|
|
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;
|
|
@@ -163,7 +163,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
163
163
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
164
164
|
timezone?: string | undefined;
|
|
165
165
|
locale?: string | undefined;
|
|
166
|
-
logLevel?: "error" | "success" | "
|
|
166
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
|
|
167
167
|
skipConfigLogging?: boolean | undefined;
|
|
168
168
|
registry?: {
|
|
169
169
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -40,6 +40,21 @@ 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
|
+
} | {
|
|
43
58
|
dark: {
|
|
44
59
|
foreground?: string | undefined;
|
|
45
60
|
background?: string | undefined;
|
|
@@ -72,7 +87,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
72
87
|
positive?: string | undefined;
|
|
73
88
|
negative?: string | undefined;
|
|
74
89
|
};
|
|
75
|
-
} | {
|
|
90
|
+
} | Record<string, {
|
|
76
91
|
dark?: string | undefined;
|
|
77
92
|
light?: string | undefined;
|
|
78
93
|
brand?: string | undefined;
|
|
@@ -87,7 +102,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
87
102
|
fatal?: string | undefined;
|
|
88
103
|
positive?: string | undefined;
|
|
89
104
|
negative?: string | undefined;
|
|
90
|
-
} |
|
|
105
|
+
} | {
|
|
91
106
|
dark: {
|
|
92
107
|
foreground?: string | undefined;
|
|
93
108
|
background?: string | undefined;
|
|
@@ -120,21 +135,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
120
135
|
positive?: string | undefined;
|
|
121
136
|
negative?: string | undefined;
|
|
122
137
|
};
|
|
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;
|
|
@@ -163,7 +163,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
163
163
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
164
164
|
timezone?: string | undefined;
|
|
165
165
|
locale?: string | undefined;
|
|
166
|
-
logLevel?: "error" | "success" | "
|
|
166
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
|
|
167
167
|
skipConfigLogging?: boolean | undefined;
|
|
168
168
|
registry?: {
|
|
169
169
|
github?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -297,10 +297,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
297
297
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
298
298
|
error: "error";
|
|
299
299
|
success: "success";
|
|
300
|
-
info: "info";
|
|
301
|
-
fatal: "fatal";
|
|
302
300
|
silent: "silent";
|
|
301
|
+
fatal: "fatal";
|
|
303
302
|
warn: "warn";
|
|
303
|
+
info: "info";
|
|
304
304
|
debug: "debug";
|
|
305
305
|
trace: "trace";
|
|
306
306
|
all: "all";
|
package/dist/schema.d.ts
CHANGED
|
@@ -297,10 +297,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
297
297
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
298
298
|
error: "error";
|
|
299
299
|
success: "success";
|
|
300
|
-
info: "info";
|
|
301
|
-
fatal: "fatal";
|
|
302
300
|
silent: "silent";
|
|
301
|
+
fatal: "fatal";
|
|
303
302
|
warn: "warn";
|
|
303
|
+
info: "info";
|
|
304
304
|
debug: "debug";
|
|
305
305
|
trace: "trace";
|
|
306
306
|
all: "all";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.125.
|
|
3
|
+
"version": "1.125.17",
|
|
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.0.2" },
|
|
88
88
|
"devDependencies": { "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "cc140afa49466e39f555922878718b7cb860d73b"
|
|
91
91
|
}
|