@storm-software/config 1.112.25 → 1.113.1
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 +17 -0
- package/README.md +1 -1
- package/dist/{chunk-BNIGJ2IO.js → chunk-NIKR5IAQ.js} +1 -1
- package/dist/{chunk-C2T4COFE.cjs → chunk-OKZCEIYK.cjs} +1 -1
- package/dist/define-config.d.cts +79 -79
- package/dist/define-config.d.ts +79 -79
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +633 -633
- package/dist/schema.d.ts +633 -633
- package/dist/schema.js +1 -1
- package/package.json +36 -11
- package/presets/base.json +0 -4
- package/presets/storm-software.json +54 -0
- package/schemas/storm-workspace.schema.json +1 -1
- package/src/define-config.d.ts +1 -1
- package/src/schema.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.113.1](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.1) (2025-04-25)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([9ab7e03d9](https://github.com/storm-software/storm-ops/commit/9ab7e03d9))
|
|
11
|
+
|
|
12
|
+
## [1.113.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.0) (2025-04-25)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- **config-tools:** Added the `tryGetWorkspaceConfig` helper function
|
|
17
|
+
([cd4dc675b](https://github.com/storm-software/storm-ops/commit/cd4dc675b))
|
|
18
|
+
- **config:** Added the `storm-software` preset and removed org specific values
|
|
19
|
+
from `base`
|
|
20
|
+
([c575fbe92](https://github.com/storm-software/storm-ops/commit/c575fbe92))
|
|
21
|
+
|
|
5
22
|
## [1.112.25](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.25) (2025-04-16)
|
|
6
23
|
|
|
7
24
|
### 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 -->
|
|
@@ -152,7 +152,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
152
152
|
"staging",
|
|
153
153
|
"production"
|
|
154
154
|
]).default("production").describe("The current runtime environment mode for the package"),
|
|
155
|
-
workspaceRoot: z.string().trim().
|
|
155
|
+
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
156
156
|
externalPackagePatterns: z.array(z.string()).default([]).describe("The build will use these package patterns to determine if they should be external to the bundle"),
|
|
157
157
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
158
158
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -152,7 +152,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
152
152
|
"staging",
|
|
153
153
|
"production"
|
|
154
154
|
]).default("production").describe("The current runtime environment mode for the package"),
|
|
155
|
-
workspaceRoot: _zod2.default.string().trim().
|
|
155
|
+
workspaceRoot: _zod2.default.string().trim().describe("The root directory of the workspace"),
|
|
156
156
|
externalPackagePatterns: _zod2.default.array(_zod2.default.string()).default([]).describe("The build will use these package patterns to determine if they should be external to the bundle"),
|
|
157
157
|
skipCache: _zod2.default.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
158
158
|
directories: WorkspaceDirectoryConfigSchema,
|
package/dist/define-config.d.cts
CHANGED
|
@@ -19,17 +19,18 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
31
31
|
url?: string | undefined;
|
|
32
32
|
};
|
|
33
|
+
workspaceRoot: string;
|
|
33
34
|
directories: {
|
|
34
35
|
cache?: string | undefined;
|
|
35
36
|
data?: string | undefined;
|
|
@@ -39,155 +40,155 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
39
40
|
build?: string | undefined;
|
|
40
41
|
};
|
|
41
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
|
+
} | {
|
|
42
58
|
dark: {
|
|
43
|
-
|
|
44
|
-
|
|
59
|
+
fatal?: string | undefined;
|
|
60
|
+
success?: string | undefined;
|
|
61
|
+
info?: string | undefined;
|
|
45
62
|
brand?: string | undefined;
|
|
46
63
|
alternate?: string | undefined;
|
|
47
64
|
accent?: string | undefined;
|
|
48
65
|
link?: string | undefined;
|
|
49
66
|
help?: string | undefined;
|
|
50
|
-
success?: string | undefined;
|
|
51
|
-
info?: string | undefined;
|
|
52
67
|
warning?: string | undefined;
|
|
53
68
|
danger?: string | undefined;
|
|
54
|
-
fatal?: string | undefined;
|
|
55
69
|
positive?: string | undefined;
|
|
56
70
|
negative?: string | undefined;
|
|
57
|
-
};
|
|
58
|
-
light: {
|
|
59
71
|
foreground?: string | undefined;
|
|
60
72
|
background?: string | undefined;
|
|
73
|
+
};
|
|
74
|
+
light: {
|
|
75
|
+
fatal?: string | undefined;
|
|
76
|
+
success?: string | undefined;
|
|
77
|
+
info?: string | undefined;
|
|
61
78
|
brand?: string | undefined;
|
|
62
79
|
alternate?: string | undefined;
|
|
63
80
|
accent?: string | undefined;
|
|
64
81
|
link?: string | undefined;
|
|
65
82
|
help?: string | undefined;
|
|
66
|
-
success?: string | undefined;
|
|
67
|
-
info?: string | undefined;
|
|
68
83
|
warning?: string | undefined;
|
|
69
84
|
danger?: string | undefined;
|
|
70
|
-
fatal?: string | undefined;
|
|
71
85
|
positive?: string | undefined;
|
|
72
86
|
negative?: string | undefined;
|
|
87
|
+
foreground?: string | undefined;
|
|
88
|
+
background?: string | undefined;
|
|
73
89
|
};
|
|
74
|
-
} | {
|
|
75
|
-
brand?: string | undefined;
|
|
76
|
-
alternate?: string | undefined;
|
|
77
|
-
accent?: string | undefined;
|
|
78
|
-
link?: string | undefined;
|
|
79
|
-
help?: string | undefined;
|
|
80
|
-
success?: string | undefined;
|
|
81
|
-
info?: string | undefined;
|
|
82
|
-
warning?: string | undefined;
|
|
83
|
-
danger?: string | undefined;
|
|
84
|
-
fatal?: string | undefined;
|
|
85
|
-
positive?: string | undefined;
|
|
86
|
-
negative?: string | undefined;
|
|
87
|
-
dark?: string | undefined;
|
|
88
|
-
light?: string | undefined;
|
|
89
90
|
} | {
|
|
90
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
|
+
} | {
|
|
91
107
|
dark: {
|
|
92
|
-
|
|
93
|
-
|
|
108
|
+
fatal?: string | undefined;
|
|
109
|
+
success?: string | undefined;
|
|
110
|
+
info?: string | undefined;
|
|
94
111
|
brand?: string | undefined;
|
|
95
112
|
alternate?: string | undefined;
|
|
96
113
|
accent?: string | undefined;
|
|
97
114
|
link?: string | undefined;
|
|
98
115
|
help?: string | undefined;
|
|
99
|
-
success?: string | undefined;
|
|
100
|
-
info?: string | undefined;
|
|
101
116
|
warning?: string | undefined;
|
|
102
117
|
danger?: string | undefined;
|
|
103
|
-
fatal?: string | undefined;
|
|
104
118
|
positive?: string | undefined;
|
|
105
119
|
negative?: string | undefined;
|
|
106
|
-
};
|
|
107
|
-
light: {
|
|
108
120
|
foreground?: string | undefined;
|
|
109
121
|
background?: string | undefined;
|
|
122
|
+
};
|
|
123
|
+
light: {
|
|
124
|
+
fatal?: string | undefined;
|
|
125
|
+
success?: string | undefined;
|
|
126
|
+
info?: string | undefined;
|
|
110
127
|
brand?: string | undefined;
|
|
111
128
|
alternate?: string | undefined;
|
|
112
129
|
accent?: string | undefined;
|
|
113
130
|
link?: string | undefined;
|
|
114
131
|
help?: string | undefined;
|
|
115
|
-
success?: string | undefined;
|
|
116
|
-
info?: string | undefined;
|
|
117
132
|
warning?: string | undefined;
|
|
118
133
|
danger?: string | undefined;
|
|
119
|
-
fatal?: string | undefined;
|
|
120
134
|
positive?: string | undefined;
|
|
121
135
|
negative?: string | undefined;
|
|
136
|
+
foreground?: string | undefined;
|
|
137
|
+
background?: string | undefined;
|
|
122
138
|
};
|
|
123
|
-
} | {
|
|
124
|
-
brand?: string | undefined;
|
|
125
|
-
alternate?: string | undefined;
|
|
126
|
-
accent?: string | undefined;
|
|
127
|
-
link?: string | undefined;
|
|
128
|
-
help?: string | undefined;
|
|
129
|
-
success?: string | undefined;
|
|
130
|
-
info?: string | undefined;
|
|
131
|
-
warning?: string | undefined;
|
|
132
|
-
danger?: string | undefined;
|
|
133
|
-
fatal?: string | undefined;
|
|
134
|
-
positive?: string | undefined;
|
|
135
|
-
negative?: string | undefined;
|
|
136
|
-
dark?: string | undefined;
|
|
137
|
-
light?: string | undefined;
|
|
138
139
|
};
|
|
139
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
|
+
} | {
|
|
140
156
|
dark: {
|
|
141
|
-
|
|
142
|
-
|
|
157
|
+
fatal?: string | undefined;
|
|
158
|
+
success?: string | undefined;
|
|
159
|
+
info?: string | undefined;
|
|
143
160
|
brand?: string | undefined;
|
|
144
161
|
alternate?: string | undefined;
|
|
145
162
|
accent?: string | undefined;
|
|
146
163
|
link?: string | undefined;
|
|
147
164
|
help?: string | undefined;
|
|
148
|
-
success?: string | undefined;
|
|
149
|
-
info?: string | undefined;
|
|
150
165
|
warning?: string | undefined;
|
|
151
166
|
danger?: string | undefined;
|
|
152
|
-
fatal?: string | undefined;
|
|
153
167
|
positive?: string | undefined;
|
|
154
168
|
negative?: string | undefined;
|
|
155
|
-
};
|
|
156
|
-
light: {
|
|
157
169
|
foreground?: string | undefined;
|
|
158
170
|
background?: string | undefined;
|
|
171
|
+
};
|
|
172
|
+
light: {
|
|
173
|
+
fatal?: string | undefined;
|
|
174
|
+
success?: string | undefined;
|
|
175
|
+
info?: string | undefined;
|
|
159
176
|
brand?: string | undefined;
|
|
160
177
|
alternate?: string | undefined;
|
|
161
178
|
accent?: string | undefined;
|
|
162
179
|
link?: string | undefined;
|
|
163
180
|
help?: string | undefined;
|
|
164
|
-
success?: string | undefined;
|
|
165
|
-
info?: string | undefined;
|
|
166
181
|
warning?: string | undefined;
|
|
167
182
|
danger?: string | undefined;
|
|
168
|
-
fatal?: string | undefined;
|
|
169
183
|
positive?: string | undefined;
|
|
170
184
|
negative?: string | undefined;
|
|
185
|
+
foreground?: string | undefined;
|
|
186
|
+
background?: string | undefined;
|
|
171
187
|
};
|
|
172
|
-
} | {
|
|
173
|
-
brand?: string | undefined;
|
|
174
|
-
alternate?: string | undefined;
|
|
175
|
-
accent?: string | undefined;
|
|
176
|
-
link?: string | undefined;
|
|
177
|
-
help?: string | undefined;
|
|
178
|
-
success?: string | undefined;
|
|
179
|
-
info?: string | undefined;
|
|
180
|
-
warning?: string | undefined;
|
|
181
|
-
danger?: string | undefined;
|
|
182
|
-
fatal?: string | undefined;
|
|
183
|
-
positive?: string | undefined;
|
|
184
|
-
negative?: string | undefined;
|
|
185
|
-
dark?: string | undefined;
|
|
186
|
-
light?: string | undefined;
|
|
187
188
|
}>;
|
|
188
|
-
name?: string | undefined;
|
|
189
189
|
$schema?: string | null | undefined;
|
|
190
190
|
extends?: string | string[] | undefined;
|
|
191
|
+
name?: string | undefined;
|
|
191
192
|
namespace?: string | undefined;
|
|
192
193
|
organization?: string | undefined;
|
|
193
194
|
repository?: string | undefined;
|
|
@@ -200,13 +201,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
200
201
|
preid?: string | undefined;
|
|
201
202
|
owner?: string | undefined;
|
|
202
203
|
mode?: "development" | "staging" | "production" | undefined;
|
|
203
|
-
workspaceRoot?: string | undefined;
|
|
204
204
|
externalPackagePatterns?: string[] | undefined;
|
|
205
205
|
skipCache?: boolean | undefined;
|
|
206
206
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
207
207
|
timezone?: string | undefined;
|
|
208
208
|
locale?: string | undefined;
|
|
209
|
-
logLevel?: "
|
|
209
|
+
logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
210
210
|
skipConfigLogging?: boolean | undefined;
|
|
211
211
|
registry?: {
|
|
212
212
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -19,17 +19,18 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
31
31
|
url?: string | undefined;
|
|
32
32
|
};
|
|
33
|
+
workspaceRoot: string;
|
|
33
34
|
directories: {
|
|
34
35
|
cache?: string | undefined;
|
|
35
36
|
data?: string | undefined;
|
|
@@ -39,155 +40,155 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
39
40
|
build?: string | undefined;
|
|
40
41
|
};
|
|
41
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
|
+
} | {
|
|
42
58
|
dark: {
|
|
43
|
-
|
|
44
|
-
|
|
59
|
+
fatal?: string | undefined;
|
|
60
|
+
success?: string | undefined;
|
|
61
|
+
info?: string | undefined;
|
|
45
62
|
brand?: string | undefined;
|
|
46
63
|
alternate?: string | undefined;
|
|
47
64
|
accent?: string | undefined;
|
|
48
65
|
link?: string | undefined;
|
|
49
66
|
help?: string | undefined;
|
|
50
|
-
success?: string | undefined;
|
|
51
|
-
info?: string | undefined;
|
|
52
67
|
warning?: string | undefined;
|
|
53
68
|
danger?: string | undefined;
|
|
54
|
-
fatal?: string | undefined;
|
|
55
69
|
positive?: string | undefined;
|
|
56
70
|
negative?: string | undefined;
|
|
57
|
-
};
|
|
58
|
-
light: {
|
|
59
71
|
foreground?: string | undefined;
|
|
60
72
|
background?: string | undefined;
|
|
73
|
+
};
|
|
74
|
+
light: {
|
|
75
|
+
fatal?: string | undefined;
|
|
76
|
+
success?: string | undefined;
|
|
77
|
+
info?: string | undefined;
|
|
61
78
|
brand?: string | undefined;
|
|
62
79
|
alternate?: string | undefined;
|
|
63
80
|
accent?: string | undefined;
|
|
64
81
|
link?: string | undefined;
|
|
65
82
|
help?: string | undefined;
|
|
66
|
-
success?: string | undefined;
|
|
67
|
-
info?: string | undefined;
|
|
68
83
|
warning?: string | undefined;
|
|
69
84
|
danger?: string | undefined;
|
|
70
|
-
fatal?: string | undefined;
|
|
71
85
|
positive?: string | undefined;
|
|
72
86
|
negative?: string | undefined;
|
|
87
|
+
foreground?: string | undefined;
|
|
88
|
+
background?: string | undefined;
|
|
73
89
|
};
|
|
74
|
-
} | {
|
|
75
|
-
brand?: string | undefined;
|
|
76
|
-
alternate?: string | undefined;
|
|
77
|
-
accent?: string | undefined;
|
|
78
|
-
link?: string | undefined;
|
|
79
|
-
help?: string | undefined;
|
|
80
|
-
success?: string | undefined;
|
|
81
|
-
info?: string | undefined;
|
|
82
|
-
warning?: string | undefined;
|
|
83
|
-
danger?: string | undefined;
|
|
84
|
-
fatal?: string | undefined;
|
|
85
|
-
positive?: string | undefined;
|
|
86
|
-
negative?: string | undefined;
|
|
87
|
-
dark?: string | undefined;
|
|
88
|
-
light?: string | undefined;
|
|
89
90
|
} | {
|
|
90
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
|
+
} | {
|
|
91
107
|
dark: {
|
|
92
|
-
|
|
93
|
-
|
|
108
|
+
fatal?: string | undefined;
|
|
109
|
+
success?: string | undefined;
|
|
110
|
+
info?: string | undefined;
|
|
94
111
|
brand?: string | undefined;
|
|
95
112
|
alternate?: string | undefined;
|
|
96
113
|
accent?: string | undefined;
|
|
97
114
|
link?: string | undefined;
|
|
98
115
|
help?: string | undefined;
|
|
99
|
-
success?: string | undefined;
|
|
100
|
-
info?: string | undefined;
|
|
101
116
|
warning?: string | undefined;
|
|
102
117
|
danger?: string | undefined;
|
|
103
|
-
fatal?: string | undefined;
|
|
104
118
|
positive?: string | undefined;
|
|
105
119
|
negative?: string | undefined;
|
|
106
|
-
};
|
|
107
|
-
light: {
|
|
108
120
|
foreground?: string | undefined;
|
|
109
121
|
background?: string | undefined;
|
|
122
|
+
};
|
|
123
|
+
light: {
|
|
124
|
+
fatal?: string | undefined;
|
|
125
|
+
success?: string | undefined;
|
|
126
|
+
info?: string | undefined;
|
|
110
127
|
brand?: string | undefined;
|
|
111
128
|
alternate?: string | undefined;
|
|
112
129
|
accent?: string | undefined;
|
|
113
130
|
link?: string | undefined;
|
|
114
131
|
help?: string | undefined;
|
|
115
|
-
success?: string | undefined;
|
|
116
|
-
info?: string | undefined;
|
|
117
132
|
warning?: string | undefined;
|
|
118
133
|
danger?: string | undefined;
|
|
119
|
-
fatal?: string | undefined;
|
|
120
134
|
positive?: string | undefined;
|
|
121
135
|
negative?: string | undefined;
|
|
136
|
+
foreground?: string | undefined;
|
|
137
|
+
background?: string | undefined;
|
|
122
138
|
};
|
|
123
|
-
} | {
|
|
124
|
-
brand?: string | undefined;
|
|
125
|
-
alternate?: string | undefined;
|
|
126
|
-
accent?: string | undefined;
|
|
127
|
-
link?: string | undefined;
|
|
128
|
-
help?: string | undefined;
|
|
129
|
-
success?: string | undefined;
|
|
130
|
-
info?: string | undefined;
|
|
131
|
-
warning?: string | undefined;
|
|
132
|
-
danger?: string | undefined;
|
|
133
|
-
fatal?: string | undefined;
|
|
134
|
-
positive?: string | undefined;
|
|
135
|
-
negative?: string | undefined;
|
|
136
|
-
dark?: string | undefined;
|
|
137
|
-
light?: string | undefined;
|
|
138
139
|
};
|
|
139
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
|
+
} | {
|
|
140
156
|
dark: {
|
|
141
|
-
|
|
142
|
-
|
|
157
|
+
fatal?: string | undefined;
|
|
158
|
+
success?: string | undefined;
|
|
159
|
+
info?: string | undefined;
|
|
143
160
|
brand?: string | undefined;
|
|
144
161
|
alternate?: string | undefined;
|
|
145
162
|
accent?: string | undefined;
|
|
146
163
|
link?: string | undefined;
|
|
147
164
|
help?: string | undefined;
|
|
148
|
-
success?: string | undefined;
|
|
149
|
-
info?: string | undefined;
|
|
150
165
|
warning?: string | undefined;
|
|
151
166
|
danger?: string | undefined;
|
|
152
|
-
fatal?: string | undefined;
|
|
153
167
|
positive?: string | undefined;
|
|
154
168
|
negative?: string | undefined;
|
|
155
|
-
};
|
|
156
|
-
light: {
|
|
157
169
|
foreground?: string | undefined;
|
|
158
170
|
background?: string | undefined;
|
|
171
|
+
};
|
|
172
|
+
light: {
|
|
173
|
+
fatal?: string | undefined;
|
|
174
|
+
success?: string | undefined;
|
|
175
|
+
info?: string | undefined;
|
|
159
176
|
brand?: string | undefined;
|
|
160
177
|
alternate?: string | undefined;
|
|
161
178
|
accent?: string | undefined;
|
|
162
179
|
link?: string | undefined;
|
|
163
180
|
help?: string | undefined;
|
|
164
|
-
success?: string | undefined;
|
|
165
|
-
info?: string | undefined;
|
|
166
181
|
warning?: string | undefined;
|
|
167
182
|
danger?: string | undefined;
|
|
168
|
-
fatal?: string | undefined;
|
|
169
183
|
positive?: string | undefined;
|
|
170
184
|
negative?: string | undefined;
|
|
185
|
+
foreground?: string | undefined;
|
|
186
|
+
background?: string | undefined;
|
|
171
187
|
};
|
|
172
|
-
} | {
|
|
173
|
-
brand?: string | undefined;
|
|
174
|
-
alternate?: string | undefined;
|
|
175
|
-
accent?: string | undefined;
|
|
176
|
-
link?: string | undefined;
|
|
177
|
-
help?: string | undefined;
|
|
178
|
-
success?: string | undefined;
|
|
179
|
-
info?: string | undefined;
|
|
180
|
-
warning?: string | undefined;
|
|
181
|
-
danger?: string | undefined;
|
|
182
|
-
fatal?: string | undefined;
|
|
183
|
-
positive?: string | undefined;
|
|
184
|
-
negative?: string | undefined;
|
|
185
|
-
dark?: string | undefined;
|
|
186
|
-
light?: string | undefined;
|
|
187
188
|
}>;
|
|
188
|
-
name?: string | undefined;
|
|
189
189
|
$schema?: string | null | undefined;
|
|
190
190
|
extends?: string | string[] | undefined;
|
|
191
|
+
name?: string | undefined;
|
|
191
192
|
namespace?: string | undefined;
|
|
192
193
|
organization?: string | undefined;
|
|
193
194
|
repository?: string | undefined;
|
|
@@ -200,13 +201,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
200
201
|
preid?: string | undefined;
|
|
201
202
|
owner?: string | undefined;
|
|
202
203
|
mode?: "development" | "staging" | "production" | undefined;
|
|
203
|
-
workspaceRoot?: string | undefined;
|
|
204
204
|
externalPackagePatterns?: string[] | undefined;
|
|
205
205
|
skipCache?: boolean | undefined;
|
|
206
206
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
207
207
|
timezone?: string | undefined;
|
|
208
208
|
locale?: string | undefined;
|
|
209
|
-
logLevel?: "
|
|
209
|
+
logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
210
210
|
skipConfigLogging?: boolean | undefined;
|
|
211
211
|
registry?: {
|
|
212
212
|
github?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -17,7 +17,7 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkOKZCEIYKcjs = require('./chunk-OKZCEIYK.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -70,4 +70,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
|
|
73
|
-
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema =
|
|
73
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkOKZCEIYKcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOKZCEIYKcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOKZCEIYKcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOKZCEIYKcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOKZCEIYKcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOKZCEIYKcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOKZCEIYKcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOKZCEIYKcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHAADVBHVcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunkOKZCEIYKcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOKZCEIYKcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOKZCEIYKcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOKZCEIYKcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOKZCEIYKcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig; exports.errorConfigSchema = _chunkOKZCEIYKcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOKZCEIYKcjs.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 _chunkOKZCEIYKcjs = require('./chunk-OKZCEIYK.cjs');
|
|
18
18
|
require('./chunk-HAADVBHV.cjs');
|
|
19
19
|
require('./chunk-USNT2KNT.cjs');
|
|
20
20
|
|
|
@@ -33,4 +33,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
exports.ColorConfigMapSchema =
|
|
36
|
+
exports.ColorConfigMapSchema = _chunkOKZCEIYKcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOKZCEIYKcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOKZCEIYKcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOKZCEIYKcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOKZCEIYKcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOKZCEIYKcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOKZCEIYKcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOKZCEIYKcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkOKZCEIYKcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOKZCEIYKcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOKZCEIYKcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOKZCEIYKcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOKZCEIYKcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkOKZCEIYKcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOKZCEIYKcjs.stormWorkspaceConfigSchema;
|