@storm-software/config 1.124.0 → 1.124.2
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 +16 -0
- package/README.md +1 -1
- package/dist/define-config.d.cts +33 -33
- package/dist/define-config.d.ts +33 -33
- package/dist/schema.d.cts +2 -2
- package/dist/schema.d.ts +2 -2
- package/package.json +1 -1
- package/schemas/storm-workspace.schema.json +8 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.124.1](https://github.com/storm-software/storm-ops/releases/tag/config%401.124.1) (2025-06-20)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **config:** Regenerate JSON schema file
|
|
10
|
+
([33f42217f](https://github.com/storm-software/storm-ops/commit/33f42217f))
|
|
11
|
+
- **monorepo:** Update README markdown files
|
|
12
|
+
([cd1727b2a](https://github.com/storm-software/storm-ops/commit/cd1727b2a))
|
|
13
|
+
|
|
14
|
+
## [1.124.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.124.0) (2025-06-20)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **config:** Update URL to Storm Workspace Configuration JSON schema file
|
|
19
|
+
([8169f4614](https://github.com/storm-software/storm-ops/commit/8169f4614))
|
|
20
|
+
|
|
5
21
|
## [1.123.2](https://github.com/storm-software/storm-ops/releases/tag/config%401.123.2) (2025-06-20)
|
|
6
22
|
|
|
7
23
|
### 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,23 +120,23 @@ 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
|
base: {
|
|
140
|
-
dark?: string | undefined;
|
|
141
|
-
light?: string | undefined;
|
|
142
|
-
brand?: string | undefined;
|
|
143
|
-
alternate?: string | undefined;
|
|
144
|
-
accent?: string | undefined;
|
|
145
|
-
link?: string | undefined;
|
|
146
|
-
help?: string | undefined;
|
|
147
|
-
success?: string | undefined;
|
|
148
|
-
info?: string | undefined;
|
|
149
|
-
warning?: string | undefined;
|
|
150
|
-
danger?: string | undefined;
|
|
151
|
-
fatal?: string | undefined;
|
|
152
|
-
positive?: string | undefined;
|
|
153
|
-
negative?: string | undefined;
|
|
154
|
-
} | {
|
|
155
140
|
dark: {
|
|
156
141
|
foreground?: string | undefined;
|
|
157
142
|
background?: string | undefined;
|
|
@@ -184,6 +169,21 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
184
169
|
positive?: string | undefined;
|
|
185
170
|
negative?: string | undefined;
|
|
186
171
|
};
|
|
172
|
+
} | {
|
|
173
|
+
dark?: string | undefined;
|
|
174
|
+
light?: string | undefined;
|
|
175
|
+
brand?: string | undefined;
|
|
176
|
+
alternate?: string | undefined;
|
|
177
|
+
accent?: string | undefined;
|
|
178
|
+
link?: string | undefined;
|
|
179
|
+
help?: string | undefined;
|
|
180
|
+
success?: string | undefined;
|
|
181
|
+
info?: string | undefined;
|
|
182
|
+
warning?: string | undefined;
|
|
183
|
+
danger?: string | undefined;
|
|
184
|
+
fatal?: string | undefined;
|
|
185
|
+
positive?: string | undefined;
|
|
186
|
+
negative?: string | undefined;
|
|
187
187
|
};
|
|
188
188
|
};
|
|
189
189
|
$schema?: string | undefined;
|
|
@@ -214,7 +214,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
214
214
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
215
215
|
timezone?: string | undefined;
|
|
216
216
|
locale?: string | undefined;
|
|
217
|
-
logLevel?: "error" | "success" | "
|
|
217
|
+
logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
218
218
|
skipConfigLogging?: boolean | undefined;
|
|
219
219
|
registry?: {
|
|
220
220
|
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,23 +120,23 @@ 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
|
base: {
|
|
140
|
-
dark?: string | undefined;
|
|
141
|
-
light?: string | undefined;
|
|
142
|
-
brand?: string | undefined;
|
|
143
|
-
alternate?: string | undefined;
|
|
144
|
-
accent?: string | undefined;
|
|
145
|
-
link?: string | undefined;
|
|
146
|
-
help?: string | undefined;
|
|
147
|
-
success?: string | undefined;
|
|
148
|
-
info?: string | undefined;
|
|
149
|
-
warning?: string | undefined;
|
|
150
|
-
danger?: string | undefined;
|
|
151
|
-
fatal?: string | undefined;
|
|
152
|
-
positive?: string | undefined;
|
|
153
|
-
negative?: string | undefined;
|
|
154
|
-
} | {
|
|
155
140
|
dark: {
|
|
156
141
|
foreground?: string | undefined;
|
|
157
142
|
background?: string | undefined;
|
|
@@ -184,6 +169,21 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
184
169
|
positive?: string | undefined;
|
|
185
170
|
negative?: string | undefined;
|
|
186
171
|
};
|
|
172
|
+
} | {
|
|
173
|
+
dark?: string | undefined;
|
|
174
|
+
light?: string | undefined;
|
|
175
|
+
brand?: string | undefined;
|
|
176
|
+
alternate?: string | undefined;
|
|
177
|
+
accent?: string | undefined;
|
|
178
|
+
link?: string | undefined;
|
|
179
|
+
help?: string | undefined;
|
|
180
|
+
success?: string | undefined;
|
|
181
|
+
info?: string | undefined;
|
|
182
|
+
warning?: string | undefined;
|
|
183
|
+
danger?: string | undefined;
|
|
184
|
+
fatal?: string | undefined;
|
|
185
|
+
positive?: string | undefined;
|
|
186
|
+
negative?: string | undefined;
|
|
187
187
|
};
|
|
188
188
|
};
|
|
189
189
|
$schema?: string | undefined;
|
|
@@ -214,7 +214,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
214
214
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
215
215
|
timezone?: string | undefined;
|
|
216
216
|
locale?: string | undefined;
|
|
217
|
-
logLevel?: "error" | "success" | "
|
|
217
|
+
logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
218
218
|
skipConfigLogging?: boolean | undefined;
|
|
219
219
|
registry?: {
|
|
220
220
|
github?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -352,10 +352,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
352
352
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
353
353
|
error: "error";
|
|
354
354
|
success: "success";
|
|
355
|
-
|
|
355
|
+
info: "info";
|
|
356
356
|
fatal: "fatal";
|
|
357
|
+
silent: "silent";
|
|
357
358
|
warn: "warn";
|
|
358
|
-
info: "info";
|
|
359
359
|
debug: "debug";
|
|
360
360
|
trace: "trace";
|
|
361
361
|
all: "all";
|
package/dist/schema.d.ts
CHANGED
|
@@ -352,10 +352,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
352
352
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
353
353
|
error: "error";
|
|
354
354
|
success: "success";
|
|
355
|
-
|
|
355
|
+
info: "info";
|
|
356
356
|
fatal: "fatal";
|
|
357
|
+
silent: "silent";
|
|
357
358
|
warn: "warn";
|
|
358
|
-
info: "info";
|
|
359
359
|
debug: "debug";
|
|
360
360
|
trace: "trace";
|
|
361
361
|
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.2",
|
|
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": {
|
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo.",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
6
6
|
"$schema": {
|
|
7
|
-
"description": "The URL to the JSON schema file that describes the Storm configuration file",
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
"default": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
|
|
11
|
-
"type": "string"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"type": "null"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
7
|
+
"description": "The URL or file path to the JSON schema file that describes the Storm configuration file",
|
|
8
|
+
"default": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
|
|
9
|
+
"type": "string"
|
|
17
10
|
},
|
|
18
11
|
"extends": {
|
|
19
12
|
"description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
|
|
@@ -1577,6 +1570,7 @@
|
|
|
1577
1570
|
}
|
|
1578
1571
|
},
|
|
1579
1572
|
"required": [
|
|
1573
|
+
"$schema",
|
|
1580
1574
|
"license",
|
|
1581
1575
|
"branch",
|
|
1582
1576
|
"owner",
|
|
@@ -1598,5 +1592,7 @@
|
|
|
1598
1592
|
"colors",
|
|
1599
1593
|
"extensions"
|
|
1600
1594
|
],
|
|
1601
|
-
"additionalProperties": false
|
|
1595
|
+
"additionalProperties": false,
|
|
1596
|
+
"$id": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
|
|
1597
|
+
"title": "Storm Workspace Configuration JSON Schema"
|
|
1602
1598
|
}
|