@storm-software/config 1.121.15 → 1.122.0
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 +6 -0
- package/dist/{chunk-6AI6N4A2.js → chunk-RTIWPBE6.js} +1 -0
- package/dist/{chunk-VCBBW6S7.cjs → chunk-YZ4LXHOB.cjs} +1 -0
- package/dist/define-config.d.cts +79 -78
- package/dist/define-config.d.ts +79 -78
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +635 -632
- package/dist/schema.d.ts +635 -632
- package/dist/schema.js +1 -1
- package/package.json +1 -1
- package/presets/storm-software.json +2 -1
- package/schemas/storm-workspace.schema.json +5 -0
- package/src/define-config.d.ts +1 -0
- package/src/schema.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.121.15](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.15) (2025-06-06)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
|
|
5
11
|
## [1.121.14](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.14) (2025-06-06)
|
|
6
12
|
|
|
7
13
|
### Miscellaneous
|
|
@@ -168,6 +168,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
168
168
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
169
169
|
homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
170
170
|
docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
171
|
+
portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
|
|
171
172
|
licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
172
173
|
contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
173
174
|
support: z.string().trim().url().optional().describe(
|
|
@@ -168,6 +168,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
168
168
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
169
169
|
homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
170
170
|
docs: _zod2.default.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
171
|
+
portal: _zod2.default.string().trim().url().optional().describe("The development portal site for the workspace"),
|
|
171
172
|
licensing: _zod2.default.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
172
173
|
contact: _zod2.default.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
173
174
|
support: _zod2.default.string().trim().url().optional().describe(
|
package/dist/define-config.d.cts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
+
github?: string | undefined;
|
|
22
23
|
twitter?: string | undefined;
|
|
23
24
|
discord?: string | undefined;
|
|
24
25
|
telegram?: string | undefined;
|
|
25
26
|
slack?: string | undefined;
|
|
26
27
|
medium?: string | undefined;
|
|
27
|
-
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -40,161 +40,162 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
fatal?: string | undefined;
|
|
44
|
-
success?: string | undefined;
|
|
45
|
-
info?: string | undefined;
|
|
46
|
-
dark?: string | undefined;
|
|
47
|
-
light?: string | undefined;
|
|
48
|
-
brand?: string | undefined;
|
|
49
|
-
alternate?: string | undefined;
|
|
50
|
-
accent?: string | undefined;
|
|
51
|
-
link?: string | undefined;
|
|
52
|
-
help?: string | undefined;
|
|
53
|
-
warning?: string | undefined;
|
|
54
|
-
danger?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
info?: string | undefined;
|
|
44
|
+
foreground?: string | undefined;
|
|
45
|
+
background?: string | undefined;
|
|
62
46
|
brand?: string | undefined;
|
|
63
47
|
alternate?: string | undefined;
|
|
64
48
|
accent?: string | undefined;
|
|
65
49
|
link?: string | undefined;
|
|
66
50
|
help?: string | undefined;
|
|
51
|
+
success?: string | undefined;
|
|
52
|
+
info?: string | undefined;
|
|
67
53
|
warning?: string | undefined;
|
|
68
54
|
danger?: string | undefined;
|
|
55
|
+
fatal?: string | undefined;
|
|
69
56
|
positive?: string | undefined;
|
|
70
57
|
negative?: string | undefined;
|
|
71
|
-
foreground?: string | undefined;
|
|
72
|
-
background?: string | undefined;
|
|
73
58
|
};
|
|
74
59
|
light: {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
info?: string | undefined;
|
|
60
|
+
foreground?: string | undefined;
|
|
61
|
+
background?: string | undefined;
|
|
78
62
|
brand?: string | undefined;
|
|
79
63
|
alternate?: string | undefined;
|
|
80
64
|
accent?: string | undefined;
|
|
81
65
|
link?: string | undefined;
|
|
82
66
|
help?: string | undefined;
|
|
67
|
+
success?: string | undefined;
|
|
68
|
+
info?: string | undefined;
|
|
83
69
|
warning?: string | undefined;
|
|
84
70
|
danger?: string | undefined;
|
|
71
|
+
fatal?: string | undefined;
|
|
85
72
|
positive?: string | undefined;
|
|
86
73
|
negative?: string | undefined;
|
|
87
|
-
foreground?: string | undefined;
|
|
88
|
-
background?: string | undefined;
|
|
89
74
|
};
|
|
75
|
+
} | {
|
|
76
|
+
brand?: string | undefined;
|
|
77
|
+
alternate?: string | undefined;
|
|
78
|
+
accent?: string | undefined;
|
|
79
|
+
link?: string | undefined;
|
|
80
|
+
help?: string | undefined;
|
|
81
|
+
success?: string | undefined;
|
|
82
|
+
info?: string | undefined;
|
|
83
|
+
warning?: string | undefined;
|
|
84
|
+
danger?: string | undefined;
|
|
85
|
+
fatal?: string | undefined;
|
|
86
|
+
positive?: string | undefined;
|
|
87
|
+
negative?: string | undefined;
|
|
88
|
+
dark?: string | undefined;
|
|
89
|
+
light?: string | undefined;
|
|
90
90
|
} | {
|
|
91
91
|
base: {
|
|
92
|
-
fatal?: string | undefined;
|
|
93
|
-
success?: string | undefined;
|
|
94
|
-
info?: string | undefined;
|
|
95
|
-
dark?: string | undefined;
|
|
96
|
-
light?: string | undefined;
|
|
97
|
-
brand?: string | undefined;
|
|
98
|
-
alternate?: string | undefined;
|
|
99
|
-
accent?: string | undefined;
|
|
100
|
-
link?: string | undefined;
|
|
101
|
-
help?: string | undefined;
|
|
102
|
-
warning?: string | undefined;
|
|
103
|
-
danger?: string | undefined;
|
|
104
|
-
positive?: string | undefined;
|
|
105
|
-
negative?: string | undefined;
|
|
106
|
-
} | {
|
|
107
92
|
dark: {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
info?: string | undefined;
|
|
93
|
+
foreground?: string | undefined;
|
|
94
|
+
background?: string | undefined;
|
|
111
95
|
brand?: string | undefined;
|
|
112
96
|
alternate?: string | undefined;
|
|
113
97
|
accent?: string | undefined;
|
|
114
98
|
link?: string | undefined;
|
|
115
99
|
help?: string | undefined;
|
|
100
|
+
success?: string | undefined;
|
|
101
|
+
info?: string | undefined;
|
|
116
102
|
warning?: string | undefined;
|
|
117
103
|
danger?: string | undefined;
|
|
104
|
+
fatal?: string | undefined;
|
|
118
105
|
positive?: string | undefined;
|
|
119
106
|
negative?: string | undefined;
|
|
120
|
-
foreground?: string | undefined;
|
|
121
|
-
background?: string | undefined;
|
|
122
107
|
};
|
|
123
108
|
light: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
info?: string | undefined;
|
|
109
|
+
foreground?: string | undefined;
|
|
110
|
+
background?: string | undefined;
|
|
127
111
|
brand?: string | undefined;
|
|
128
112
|
alternate?: string | undefined;
|
|
129
113
|
accent?: string | undefined;
|
|
130
114
|
link?: string | undefined;
|
|
131
115
|
help?: string | undefined;
|
|
116
|
+
success?: string | undefined;
|
|
117
|
+
info?: string | undefined;
|
|
132
118
|
warning?: string | undefined;
|
|
133
119
|
danger?: string | undefined;
|
|
120
|
+
fatal?: string | undefined;
|
|
134
121
|
positive?: string | undefined;
|
|
135
122
|
negative?: string | undefined;
|
|
136
|
-
foreground?: string | undefined;
|
|
137
|
-
background?: string | undefined;
|
|
138
123
|
};
|
|
124
|
+
} | {
|
|
125
|
+
brand?: string | undefined;
|
|
126
|
+
alternate?: string | undefined;
|
|
127
|
+
accent?: string | undefined;
|
|
128
|
+
link?: string | undefined;
|
|
129
|
+
help?: string | undefined;
|
|
130
|
+
success?: string | undefined;
|
|
131
|
+
info?: string | undefined;
|
|
132
|
+
warning?: string | undefined;
|
|
133
|
+
danger?: string | undefined;
|
|
134
|
+
fatal?: string | undefined;
|
|
135
|
+
positive?: string | undefined;
|
|
136
|
+
negative?: string | undefined;
|
|
137
|
+
dark?: string | undefined;
|
|
138
|
+
light?: string | undefined;
|
|
139
139
|
};
|
|
140
140
|
} | Record<string, {
|
|
141
|
-
fatal?: string | undefined;
|
|
142
|
-
success?: string | undefined;
|
|
143
|
-
info?: string | undefined;
|
|
144
|
-
dark?: string | undefined;
|
|
145
|
-
light?: string | undefined;
|
|
146
|
-
brand?: string | undefined;
|
|
147
|
-
alternate?: string | undefined;
|
|
148
|
-
accent?: string | undefined;
|
|
149
|
-
link?: string | undefined;
|
|
150
|
-
help?: string | undefined;
|
|
151
|
-
warning?: string | undefined;
|
|
152
|
-
danger?: string | undefined;
|
|
153
|
-
positive?: string | undefined;
|
|
154
|
-
negative?: string | undefined;
|
|
155
|
-
} | {
|
|
156
141
|
dark: {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
info?: string | undefined;
|
|
142
|
+
foreground?: string | undefined;
|
|
143
|
+
background?: string | undefined;
|
|
160
144
|
brand?: string | undefined;
|
|
161
145
|
alternate?: string | undefined;
|
|
162
146
|
accent?: string | undefined;
|
|
163
147
|
link?: string | undefined;
|
|
164
148
|
help?: string | undefined;
|
|
149
|
+
success?: string | undefined;
|
|
150
|
+
info?: string | undefined;
|
|
165
151
|
warning?: string | undefined;
|
|
166
152
|
danger?: string | undefined;
|
|
153
|
+
fatal?: string | undefined;
|
|
167
154
|
positive?: string | undefined;
|
|
168
155
|
negative?: string | undefined;
|
|
169
|
-
foreground?: string | undefined;
|
|
170
|
-
background?: string | undefined;
|
|
171
156
|
};
|
|
172
157
|
light: {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
info?: string | undefined;
|
|
158
|
+
foreground?: string | undefined;
|
|
159
|
+
background?: string | undefined;
|
|
176
160
|
brand?: string | undefined;
|
|
177
161
|
alternate?: string | undefined;
|
|
178
162
|
accent?: string | undefined;
|
|
179
163
|
link?: string | undefined;
|
|
180
164
|
help?: string | undefined;
|
|
165
|
+
success?: string | undefined;
|
|
166
|
+
info?: string | undefined;
|
|
181
167
|
warning?: string | undefined;
|
|
182
168
|
danger?: string | undefined;
|
|
169
|
+
fatal?: string | undefined;
|
|
183
170
|
positive?: string | undefined;
|
|
184
171
|
negative?: string | undefined;
|
|
185
|
-
foreground?: string | undefined;
|
|
186
|
-
background?: string | undefined;
|
|
187
172
|
};
|
|
173
|
+
} | {
|
|
174
|
+
brand?: string | undefined;
|
|
175
|
+
alternate?: string | undefined;
|
|
176
|
+
accent?: string | undefined;
|
|
177
|
+
link?: string | undefined;
|
|
178
|
+
help?: string | undefined;
|
|
179
|
+
success?: string | undefined;
|
|
180
|
+
info?: string | undefined;
|
|
181
|
+
warning?: string | undefined;
|
|
182
|
+
danger?: string | undefined;
|
|
183
|
+
fatal?: string | undefined;
|
|
184
|
+
positive?: string | undefined;
|
|
185
|
+
negative?: string | undefined;
|
|
186
|
+
dark?: string | undefined;
|
|
187
|
+
light?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
+
name?: string | undefined;
|
|
189
190
|
$schema?: string | null | undefined;
|
|
190
191
|
extends?: string | string[] | undefined;
|
|
191
|
-
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
193
|
organization?: string | undefined;
|
|
194
194
|
repository?: string | undefined;
|
|
195
195
|
license?: string | undefined;
|
|
196
196
|
homepage?: string | undefined;
|
|
197
197
|
docs?: string | undefined;
|
|
198
|
+
portal?: string | undefined;
|
|
198
199
|
licensing?: string | undefined;
|
|
199
200
|
contact?: string | undefined;
|
|
200
201
|
support?: string | undefined;
|
|
@@ -207,7 +208,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
207
208
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
208
209
|
timezone?: string | undefined;
|
|
209
210
|
locale?: string | undefined;
|
|
210
|
-
logLevel?: "
|
|
211
|
+
logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
211
212
|
skipConfigLogging?: boolean | undefined;
|
|
212
213
|
registry?: {
|
|
213
214
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
+
github?: string | undefined;
|
|
22
23
|
twitter?: string | undefined;
|
|
23
24
|
discord?: string | undefined;
|
|
24
25
|
telegram?: string | undefined;
|
|
25
26
|
slack?: string | undefined;
|
|
26
27
|
medium?: string | undefined;
|
|
27
|
-
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -40,161 +40,162 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
fatal?: string | undefined;
|
|
44
|
-
success?: string | undefined;
|
|
45
|
-
info?: string | undefined;
|
|
46
|
-
dark?: string | undefined;
|
|
47
|
-
light?: string | undefined;
|
|
48
|
-
brand?: string | undefined;
|
|
49
|
-
alternate?: string | undefined;
|
|
50
|
-
accent?: string | undefined;
|
|
51
|
-
link?: string | undefined;
|
|
52
|
-
help?: string | undefined;
|
|
53
|
-
warning?: string | undefined;
|
|
54
|
-
danger?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
info?: string | undefined;
|
|
44
|
+
foreground?: string | undefined;
|
|
45
|
+
background?: string | undefined;
|
|
62
46
|
brand?: string | undefined;
|
|
63
47
|
alternate?: string | undefined;
|
|
64
48
|
accent?: string | undefined;
|
|
65
49
|
link?: string | undefined;
|
|
66
50
|
help?: string | undefined;
|
|
51
|
+
success?: string | undefined;
|
|
52
|
+
info?: string | undefined;
|
|
67
53
|
warning?: string | undefined;
|
|
68
54
|
danger?: string | undefined;
|
|
55
|
+
fatal?: string | undefined;
|
|
69
56
|
positive?: string | undefined;
|
|
70
57
|
negative?: string | undefined;
|
|
71
|
-
foreground?: string | undefined;
|
|
72
|
-
background?: string | undefined;
|
|
73
58
|
};
|
|
74
59
|
light: {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
info?: string | undefined;
|
|
60
|
+
foreground?: string | undefined;
|
|
61
|
+
background?: string | undefined;
|
|
78
62
|
brand?: string | undefined;
|
|
79
63
|
alternate?: string | undefined;
|
|
80
64
|
accent?: string | undefined;
|
|
81
65
|
link?: string | undefined;
|
|
82
66
|
help?: string | undefined;
|
|
67
|
+
success?: string | undefined;
|
|
68
|
+
info?: string | undefined;
|
|
83
69
|
warning?: string | undefined;
|
|
84
70
|
danger?: string | undefined;
|
|
71
|
+
fatal?: string | undefined;
|
|
85
72
|
positive?: string | undefined;
|
|
86
73
|
negative?: string | undefined;
|
|
87
|
-
foreground?: string | undefined;
|
|
88
|
-
background?: string | undefined;
|
|
89
74
|
};
|
|
75
|
+
} | {
|
|
76
|
+
brand?: string | undefined;
|
|
77
|
+
alternate?: string | undefined;
|
|
78
|
+
accent?: string | undefined;
|
|
79
|
+
link?: string | undefined;
|
|
80
|
+
help?: string | undefined;
|
|
81
|
+
success?: string | undefined;
|
|
82
|
+
info?: string | undefined;
|
|
83
|
+
warning?: string | undefined;
|
|
84
|
+
danger?: string | undefined;
|
|
85
|
+
fatal?: string | undefined;
|
|
86
|
+
positive?: string | undefined;
|
|
87
|
+
negative?: string | undefined;
|
|
88
|
+
dark?: string | undefined;
|
|
89
|
+
light?: string | undefined;
|
|
90
90
|
} | {
|
|
91
91
|
base: {
|
|
92
|
-
fatal?: string | undefined;
|
|
93
|
-
success?: string | undefined;
|
|
94
|
-
info?: string | undefined;
|
|
95
|
-
dark?: string | undefined;
|
|
96
|
-
light?: string | undefined;
|
|
97
|
-
brand?: string | undefined;
|
|
98
|
-
alternate?: string | undefined;
|
|
99
|
-
accent?: string | undefined;
|
|
100
|
-
link?: string | undefined;
|
|
101
|
-
help?: string | undefined;
|
|
102
|
-
warning?: string | undefined;
|
|
103
|
-
danger?: string | undefined;
|
|
104
|
-
positive?: string | undefined;
|
|
105
|
-
negative?: string | undefined;
|
|
106
|
-
} | {
|
|
107
92
|
dark: {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
info?: string | undefined;
|
|
93
|
+
foreground?: string | undefined;
|
|
94
|
+
background?: string | undefined;
|
|
111
95
|
brand?: string | undefined;
|
|
112
96
|
alternate?: string | undefined;
|
|
113
97
|
accent?: string | undefined;
|
|
114
98
|
link?: string | undefined;
|
|
115
99
|
help?: string | undefined;
|
|
100
|
+
success?: string | undefined;
|
|
101
|
+
info?: string | undefined;
|
|
116
102
|
warning?: string | undefined;
|
|
117
103
|
danger?: string | undefined;
|
|
104
|
+
fatal?: string | undefined;
|
|
118
105
|
positive?: string | undefined;
|
|
119
106
|
negative?: string | undefined;
|
|
120
|
-
foreground?: string | undefined;
|
|
121
|
-
background?: string | undefined;
|
|
122
107
|
};
|
|
123
108
|
light: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
info?: string | undefined;
|
|
109
|
+
foreground?: string | undefined;
|
|
110
|
+
background?: string | undefined;
|
|
127
111
|
brand?: string | undefined;
|
|
128
112
|
alternate?: string | undefined;
|
|
129
113
|
accent?: string | undefined;
|
|
130
114
|
link?: string | undefined;
|
|
131
115
|
help?: string | undefined;
|
|
116
|
+
success?: string | undefined;
|
|
117
|
+
info?: string | undefined;
|
|
132
118
|
warning?: string | undefined;
|
|
133
119
|
danger?: string | undefined;
|
|
120
|
+
fatal?: string | undefined;
|
|
134
121
|
positive?: string | undefined;
|
|
135
122
|
negative?: string | undefined;
|
|
136
|
-
foreground?: string | undefined;
|
|
137
|
-
background?: string | undefined;
|
|
138
123
|
};
|
|
124
|
+
} | {
|
|
125
|
+
brand?: string | undefined;
|
|
126
|
+
alternate?: string | undefined;
|
|
127
|
+
accent?: string | undefined;
|
|
128
|
+
link?: string | undefined;
|
|
129
|
+
help?: string | undefined;
|
|
130
|
+
success?: string | undefined;
|
|
131
|
+
info?: string | undefined;
|
|
132
|
+
warning?: string | undefined;
|
|
133
|
+
danger?: string | undefined;
|
|
134
|
+
fatal?: string | undefined;
|
|
135
|
+
positive?: string | undefined;
|
|
136
|
+
negative?: string | undefined;
|
|
137
|
+
dark?: string | undefined;
|
|
138
|
+
light?: string | undefined;
|
|
139
139
|
};
|
|
140
140
|
} | Record<string, {
|
|
141
|
-
fatal?: string | undefined;
|
|
142
|
-
success?: string | undefined;
|
|
143
|
-
info?: string | undefined;
|
|
144
|
-
dark?: string | undefined;
|
|
145
|
-
light?: string | undefined;
|
|
146
|
-
brand?: string | undefined;
|
|
147
|
-
alternate?: string | undefined;
|
|
148
|
-
accent?: string | undefined;
|
|
149
|
-
link?: string | undefined;
|
|
150
|
-
help?: string | undefined;
|
|
151
|
-
warning?: string | undefined;
|
|
152
|
-
danger?: string | undefined;
|
|
153
|
-
positive?: string | undefined;
|
|
154
|
-
negative?: string | undefined;
|
|
155
|
-
} | {
|
|
156
141
|
dark: {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
info?: string | undefined;
|
|
142
|
+
foreground?: string | undefined;
|
|
143
|
+
background?: string | undefined;
|
|
160
144
|
brand?: string | undefined;
|
|
161
145
|
alternate?: string | undefined;
|
|
162
146
|
accent?: string | undefined;
|
|
163
147
|
link?: string | undefined;
|
|
164
148
|
help?: string | undefined;
|
|
149
|
+
success?: string | undefined;
|
|
150
|
+
info?: string | undefined;
|
|
165
151
|
warning?: string | undefined;
|
|
166
152
|
danger?: string | undefined;
|
|
153
|
+
fatal?: string | undefined;
|
|
167
154
|
positive?: string | undefined;
|
|
168
155
|
negative?: string | undefined;
|
|
169
|
-
foreground?: string | undefined;
|
|
170
|
-
background?: string | undefined;
|
|
171
156
|
};
|
|
172
157
|
light: {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
info?: string | undefined;
|
|
158
|
+
foreground?: string | undefined;
|
|
159
|
+
background?: string | undefined;
|
|
176
160
|
brand?: string | undefined;
|
|
177
161
|
alternate?: string | undefined;
|
|
178
162
|
accent?: string | undefined;
|
|
179
163
|
link?: string | undefined;
|
|
180
164
|
help?: string | undefined;
|
|
165
|
+
success?: string | undefined;
|
|
166
|
+
info?: string | undefined;
|
|
181
167
|
warning?: string | undefined;
|
|
182
168
|
danger?: string | undefined;
|
|
169
|
+
fatal?: string | undefined;
|
|
183
170
|
positive?: string | undefined;
|
|
184
171
|
negative?: string | undefined;
|
|
185
|
-
foreground?: string | undefined;
|
|
186
|
-
background?: string | undefined;
|
|
187
172
|
};
|
|
173
|
+
} | {
|
|
174
|
+
brand?: string | undefined;
|
|
175
|
+
alternate?: string | undefined;
|
|
176
|
+
accent?: string | undefined;
|
|
177
|
+
link?: string | undefined;
|
|
178
|
+
help?: string | undefined;
|
|
179
|
+
success?: string | undefined;
|
|
180
|
+
info?: string | undefined;
|
|
181
|
+
warning?: string | undefined;
|
|
182
|
+
danger?: string | undefined;
|
|
183
|
+
fatal?: string | undefined;
|
|
184
|
+
positive?: string | undefined;
|
|
185
|
+
negative?: string | undefined;
|
|
186
|
+
dark?: string | undefined;
|
|
187
|
+
light?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
+
name?: string | undefined;
|
|
189
190
|
$schema?: string | null | undefined;
|
|
190
191
|
extends?: string | string[] | undefined;
|
|
191
|
-
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
193
|
organization?: string | undefined;
|
|
194
194
|
repository?: string | undefined;
|
|
195
195
|
license?: string | undefined;
|
|
196
196
|
homepage?: string | undefined;
|
|
197
197
|
docs?: string | undefined;
|
|
198
|
+
portal?: string | undefined;
|
|
198
199
|
licensing?: string | undefined;
|
|
199
200
|
contact?: string | undefined;
|
|
200
201
|
support?: string | undefined;
|
|
@@ -207,7 +208,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
207
208
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
208
209
|
timezone?: string | undefined;
|
|
209
210
|
locale?: string | undefined;
|
|
210
|
-
logLevel?: "
|
|
211
|
+
logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
211
212
|
skipConfigLogging?: boolean | undefined;
|
|
212
213
|
registry?: {
|
|
213
214
|
github?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -17,7 +17,7 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkYZ4LXHOBcjs = require('./chunk-YZ4LXHOB.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -71,4 +71,4 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
|
|
74
|
-
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema =
|
|
74
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkYZ4LXHOBcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkYZ4LXHOBcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkYZ4LXHOBcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkYZ4LXHOBcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkYZ4LXHOBcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkYZ4LXHOBcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkYZ4LXHOBcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkYZ4LXHOBcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHPEJ52UXcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHPEJ52UXcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHPEJ52UXcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHPEJ52UXcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SUPPORT = _chunkHPEJ52UXcjs.STORM_DEFAULT_SUPPORT; exports.SingleThemeColorConfigSchema = _chunkYZ4LXHOBcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkYZ4LXHOBcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkYZ4LXHOBcjs.stormWorkspaceConfigSchema;
|
package/dist/index.js
CHANGED
package/dist/schema.cjs
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkYZ4LXHOBcjs = require('./chunk-YZ4LXHOB.cjs');
|
|
18
18
|
require('./chunk-HPEJ52UX.cjs');
|
|
19
19
|
|
|
20
20
|
|
|
@@ -32,4 +32,4 @@ require('./chunk-HPEJ52UX.cjs');
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
exports.ColorConfigMapSchema =
|
|
35
|
+
exports.ColorConfigMapSchema = _chunkYZ4LXHOBcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkYZ4LXHOBcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkYZ4LXHOBcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkYZ4LXHOBcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkYZ4LXHOBcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkYZ4LXHOBcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkYZ4LXHOBcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkYZ4LXHOBcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkYZ4LXHOBcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkYZ4LXHOBcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkYZ4LXHOBcjs.stormWorkspaceConfigSchema;
|