@storm-software/config 1.106.12 → 1.107.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 +8 -0
- package/README.md +1 -1
- package/dist/{chunk-JNZ6APQ5.cjs → chunk-5RAKNLPP.cjs} +14 -5
- package/dist/chunk-CPQUL4OS.cjs +22 -0
- package/dist/chunk-KO5ZCYSI.js +22 -0
- package/dist/{chunk-ARJWLQIE.js → chunk-ORVYZZUV.js} +11 -2
- package/dist/constants.cjs +6 -2
- package/dist/constants.d.cts +3 -1
- package/dist/constants.d.ts +3 -1
- package/dist/constants.js +7 -3
- package/dist/define-config.d.cts +83 -78
- package/dist/define-config.d.ts +83 -78
- package/dist/index.cjs +9 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +10 -4
- package/dist/schema.cjs +5 -3
- package/dist/schema.d.cts +667 -631
- package/dist/schema.d.ts +667 -631
- package/dist/schema.js +6 -4
- package/package.json +1 -1
- package/schemas/storm-workspace.schema.json +22 -1
- package/src/constants.d.ts +2 -0
- package/src/define-config.d.ts +5 -0
- package/src/schema.d.ts +36 -0
- package/dist/chunk-AVMOBJJQ.cjs +0 -12
- package/dist/chunk-PQYQEEST.js +0 -12
package/dist/define-config.d.ts
CHANGED
|
@@ -13,6 +13,11 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
13
13
|
name?: string | undefined;
|
|
14
14
|
email?: string | undefined;
|
|
15
15
|
};
|
|
16
|
+
release: {
|
|
17
|
+
banner?: string | undefined;
|
|
18
|
+
header?: string | undefined;
|
|
19
|
+
footer?: string | undefined;
|
|
20
|
+
};
|
|
16
21
|
directories: {
|
|
17
22
|
cache?: string | undefined;
|
|
18
23
|
data?: string | undefined;
|
|
@@ -22,155 +27,155 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
22
27
|
build?: string | undefined;
|
|
23
28
|
};
|
|
24
29
|
colors: {
|
|
25
|
-
fatal?: string | undefined;
|
|
26
|
-
success?: string | undefined;
|
|
27
|
-
info?: string | undefined;
|
|
28
|
-
dark?: string | undefined;
|
|
29
|
-
light?: string | undefined;
|
|
30
|
-
brand?: string | undefined;
|
|
31
|
-
alternate?: string | undefined;
|
|
32
|
-
accent?: string | undefined;
|
|
33
|
-
link?: string | undefined;
|
|
34
|
-
help?: string | undefined;
|
|
35
|
-
warning?: string | undefined;
|
|
36
|
-
danger?: string | undefined;
|
|
37
|
-
positive?: string | undefined;
|
|
38
|
-
negative?: string | undefined;
|
|
39
|
-
} | {
|
|
40
30
|
dark: {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
info?: string | undefined;
|
|
31
|
+
foreground?: string | undefined;
|
|
32
|
+
background?: string | undefined;
|
|
44
33
|
brand?: string | undefined;
|
|
45
34
|
alternate?: string | undefined;
|
|
46
35
|
accent?: string | undefined;
|
|
47
36
|
link?: string | undefined;
|
|
48
37
|
help?: string | undefined;
|
|
38
|
+
success?: string | undefined;
|
|
39
|
+
info?: string | undefined;
|
|
49
40
|
warning?: string | undefined;
|
|
50
41
|
danger?: string | undefined;
|
|
42
|
+
fatal?: string | undefined;
|
|
51
43
|
positive?: string | undefined;
|
|
52
44
|
negative?: string | undefined;
|
|
53
|
-
foreground?: string | undefined;
|
|
54
|
-
background?: string | undefined;
|
|
55
45
|
};
|
|
56
46
|
light: {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
info?: string | undefined;
|
|
47
|
+
foreground?: string | undefined;
|
|
48
|
+
background?: string | undefined;
|
|
60
49
|
brand?: string | undefined;
|
|
61
50
|
alternate?: string | undefined;
|
|
62
51
|
accent?: string | undefined;
|
|
63
52
|
link?: string | undefined;
|
|
64
53
|
help?: string | undefined;
|
|
54
|
+
success?: string | undefined;
|
|
55
|
+
info?: string | undefined;
|
|
65
56
|
warning?: string | undefined;
|
|
66
57
|
danger?: string | undefined;
|
|
58
|
+
fatal?: string | undefined;
|
|
67
59
|
positive?: string | undefined;
|
|
68
60
|
negative?: string | undefined;
|
|
69
|
-
foreground?: string | undefined;
|
|
70
|
-
background?: string | undefined;
|
|
71
61
|
};
|
|
62
|
+
} | {
|
|
63
|
+
brand?: string | undefined;
|
|
64
|
+
alternate?: string | undefined;
|
|
65
|
+
accent?: string | undefined;
|
|
66
|
+
link?: string | undefined;
|
|
67
|
+
help?: string | undefined;
|
|
68
|
+
success?: string | undefined;
|
|
69
|
+
info?: string | undefined;
|
|
70
|
+
warning?: string | undefined;
|
|
71
|
+
danger?: string | undefined;
|
|
72
|
+
fatal?: string | undefined;
|
|
73
|
+
positive?: string | undefined;
|
|
74
|
+
negative?: string | undefined;
|
|
75
|
+
dark?: string | undefined;
|
|
76
|
+
light?: string | undefined;
|
|
72
77
|
} | {
|
|
73
78
|
base: {
|
|
74
|
-
fatal?: string | undefined;
|
|
75
|
-
success?: string | undefined;
|
|
76
|
-
info?: string | undefined;
|
|
77
|
-
dark?: string | undefined;
|
|
78
|
-
light?: string | undefined;
|
|
79
|
-
brand?: string | undefined;
|
|
80
|
-
alternate?: string | undefined;
|
|
81
|
-
accent?: string | undefined;
|
|
82
|
-
link?: string | undefined;
|
|
83
|
-
help?: string | undefined;
|
|
84
|
-
warning?: string | undefined;
|
|
85
|
-
danger?: string | undefined;
|
|
86
|
-
positive?: string | undefined;
|
|
87
|
-
negative?: string | undefined;
|
|
88
|
-
} | {
|
|
89
79
|
dark: {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
info?: string | undefined;
|
|
80
|
+
foreground?: string | undefined;
|
|
81
|
+
background?: string | undefined;
|
|
93
82
|
brand?: string | undefined;
|
|
94
83
|
alternate?: string | undefined;
|
|
95
84
|
accent?: string | undefined;
|
|
96
85
|
link?: string | undefined;
|
|
97
86
|
help?: string | undefined;
|
|
87
|
+
success?: string | undefined;
|
|
88
|
+
info?: string | undefined;
|
|
98
89
|
warning?: string | undefined;
|
|
99
90
|
danger?: string | undefined;
|
|
91
|
+
fatal?: string | undefined;
|
|
100
92
|
positive?: string | undefined;
|
|
101
93
|
negative?: string | undefined;
|
|
102
|
-
foreground?: string | undefined;
|
|
103
|
-
background?: string | undefined;
|
|
104
94
|
};
|
|
105
95
|
light: {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
info?: string | undefined;
|
|
96
|
+
foreground?: string | undefined;
|
|
97
|
+
background?: string | undefined;
|
|
109
98
|
brand?: string | undefined;
|
|
110
99
|
alternate?: string | undefined;
|
|
111
100
|
accent?: string | undefined;
|
|
112
101
|
link?: string | undefined;
|
|
113
102
|
help?: string | undefined;
|
|
103
|
+
success?: string | undefined;
|
|
104
|
+
info?: string | undefined;
|
|
114
105
|
warning?: string | undefined;
|
|
115
106
|
danger?: string | undefined;
|
|
107
|
+
fatal?: string | undefined;
|
|
116
108
|
positive?: string | undefined;
|
|
117
109
|
negative?: string | undefined;
|
|
118
|
-
foreground?: string | undefined;
|
|
119
|
-
background?: string | undefined;
|
|
120
110
|
};
|
|
111
|
+
} | {
|
|
112
|
+
brand?: string | undefined;
|
|
113
|
+
alternate?: string | undefined;
|
|
114
|
+
accent?: string | undefined;
|
|
115
|
+
link?: string | undefined;
|
|
116
|
+
help?: string | undefined;
|
|
117
|
+
success?: string | undefined;
|
|
118
|
+
info?: string | undefined;
|
|
119
|
+
warning?: string | undefined;
|
|
120
|
+
danger?: string | undefined;
|
|
121
|
+
fatal?: string | undefined;
|
|
122
|
+
positive?: string | undefined;
|
|
123
|
+
negative?: string | undefined;
|
|
124
|
+
dark?: string | undefined;
|
|
125
|
+
light?: string | undefined;
|
|
121
126
|
};
|
|
122
127
|
} | Record<string, {
|
|
123
|
-
fatal?: string | undefined;
|
|
124
|
-
success?: string | undefined;
|
|
125
|
-
info?: string | undefined;
|
|
126
|
-
dark?: string | undefined;
|
|
127
|
-
light?: string | undefined;
|
|
128
|
-
brand?: string | undefined;
|
|
129
|
-
alternate?: string | undefined;
|
|
130
|
-
accent?: string | undefined;
|
|
131
|
-
link?: string | undefined;
|
|
132
|
-
help?: string | undefined;
|
|
133
|
-
warning?: string | undefined;
|
|
134
|
-
danger?: string | undefined;
|
|
135
|
-
positive?: string | undefined;
|
|
136
|
-
negative?: string | undefined;
|
|
137
|
-
} | {
|
|
138
128
|
dark: {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
info?: string | undefined;
|
|
129
|
+
foreground?: string | undefined;
|
|
130
|
+
background?: string | undefined;
|
|
142
131
|
brand?: string | undefined;
|
|
143
132
|
alternate?: string | undefined;
|
|
144
133
|
accent?: string | undefined;
|
|
145
134
|
link?: string | undefined;
|
|
146
135
|
help?: string | undefined;
|
|
136
|
+
success?: string | undefined;
|
|
137
|
+
info?: string | undefined;
|
|
147
138
|
warning?: string | undefined;
|
|
148
139
|
danger?: string | undefined;
|
|
140
|
+
fatal?: string | undefined;
|
|
149
141
|
positive?: string | undefined;
|
|
150
142
|
negative?: string | undefined;
|
|
151
|
-
foreground?: string | undefined;
|
|
152
|
-
background?: string | undefined;
|
|
153
143
|
};
|
|
154
144
|
light: {
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
info?: string | undefined;
|
|
145
|
+
foreground?: string | undefined;
|
|
146
|
+
background?: string | undefined;
|
|
158
147
|
brand?: string | undefined;
|
|
159
148
|
alternate?: string | undefined;
|
|
160
149
|
accent?: string | undefined;
|
|
161
150
|
link?: string | undefined;
|
|
162
151
|
help?: string | undefined;
|
|
152
|
+
success?: string | undefined;
|
|
153
|
+
info?: string | undefined;
|
|
163
154
|
warning?: string | undefined;
|
|
164
155
|
danger?: string | undefined;
|
|
156
|
+
fatal?: string | undefined;
|
|
165
157
|
positive?: string | undefined;
|
|
166
158
|
negative?: string | undefined;
|
|
167
|
-
foreground?: string | undefined;
|
|
168
|
-
background?: string | undefined;
|
|
169
159
|
};
|
|
160
|
+
} | {
|
|
161
|
+
brand?: string | undefined;
|
|
162
|
+
alternate?: string | undefined;
|
|
163
|
+
accent?: string | undefined;
|
|
164
|
+
link?: string | undefined;
|
|
165
|
+
help?: string | undefined;
|
|
166
|
+
success?: string | undefined;
|
|
167
|
+
info?: string | undefined;
|
|
168
|
+
warning?: string | undefined;
|
|
169
|
+
danger?: string | undefined;
|
|
170
|
+
fatal?: string | undefined;
|
|
171
|
+
positive?: string | undefined;
|
|
172
|
+
negative?: string | undefined;
|
|
173
|
+
dark?: string | undefined;
|
|
174
|
+
light?: string | undefined;
|
|
170
175
|
}>;
|
|
176
|
+
name?: string | undefined;
|
|
171
177
|
$schema?: string | null | undefined;
|
|
172
178
|
extends?: string | string[] | undefined;
|
|
173
|
-
name?: string | undefined;
|
|
174
179
|
namespace?: string | undefined;
|
|
175
180
|
organization?: string | undefined;
|
|
176
181
|
repository?: string | undefined;
|
|
@@ -188,11 +193,11 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
188
193
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
189
194
|
timezone?: string | undefined;
|
|
190
195
|
locale?: string | undefined;
|
|
191
|
-
logLevel?: "
|
|
196
|
+
logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
192
197
|
skipConfigLogging?: boolean | undefined;
|
|
193
198
|
registry?: {
|
|
194
|
-
npm?: string | undefined;
|
|
195
199
|
github?: string | undefined;
|
|
200
|
+
npm?: string | undefined;
|
|
196
201
|
cargo?: string | undefined;
|
|
197
202
|
cyclone?: string | undefined;
|
|
198
203
|
container?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -14,13 +14,16 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var _chunkJNZ6APQ5cjs = require('./chunk-JNZ6APQ5.cjs');
|
|
18
17
|
|
|
18
|
+
var _chunk5RAKNLPPcjs = require('./chunk-5RAKNLPP.cjs');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
var _chunkCPQUL4OScjs = require('./chunk-CPQUL4OS.cjs');
|
|
24
27
|
|
|
25
28
|
|
|
26
29
|
var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
@@ -44,4 +47,7 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
44
47
|
|
|
45
48
|
|
|
46
49
|
|
|
47
|
-
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunk5RAKNLPPcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunk5RAKNLPPcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunk5RAKNLPPcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunk5RAKNLPPcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunk5RAKNLPPcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunk5RAKNLPPcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunk5RAKNLPPcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunk5RAKNLPPcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_DOCS = _chunkCPQUL4OScjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkCPQUL4OScjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkCPQUL4OScjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkCPQUL4OScjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunk5RAKNLPPcjs.SingleThemeColorConfigSchema; exports.StormConfigSchema = _chunk5RAKNLPPcjs.StormConfigSchema; exports.WorkspaceBotConfigSchema = _chunk5RAKNLPPcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunk5RAKNLPPcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunk5RAKNLPPcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING } from './constants.cjs';
|
|
1
|
+
export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.cjs';
|
|
2
2
|
export { defineConfig } from './define-config.cjs';
|
|
3
|
-
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema } from './schema.cjs';
|
|
3
|
+
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema } from './schema.cjs';
|
|
4
4
|
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormConfigInput } from './types.cjs';
|
|
5
5
|
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING } from './constants.js';
|
|
1
|
+
export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.js';
|
|
2
2
|
export { defineConfig } from './define-config.js';
|
|
3
|
-
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema } from './schema.js';
|
|
3
|
+
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema } from './schema.js';
|
|
4
4
|
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormConfigInput } from './types.js';
|
|
5
5
|
import 'zod';
|
package/dist/index.js
CHANGED
|
@@ -13,14 +13,17 @@ import {
|
|
|
13
13
|
SingleThemeColorConfigSchema,
|
|
14
14
|
StormConfigSchema,
|
|
15
15
|
WorkspaceBotConfigSchema,
|
|
16
|
-
WorkspaceDirectoryConfigSchema
|
|
17
|
-
|
|
16
|
+
WorkspaceDirectoryConfigSchema,
|
|
17
|
+
WorkspaceReleaseConfigSchema
|
|
18
|
+
} from "./chunk-ORVYZZUV.js";
|
|
18
19
|
import {
|
|
19
20
|
STORM_DEFAULT_DOCS,
|
|
20
21
|
STORM_DEFAULT_HOMEPAGE,
|
|
21
22
|
STORM_DEFAULT_LICENSE,
|
|
22
|
-
STORM_DEFAULT_LICENSING
|
|
23
|
-
|
|
23
|
+
STORM_DEFAULT_LICENSING,
|
|
24
|
+
STORM_DEFAULT_RELEASE_BANNER,
|
|
25
|
+
STORM_DEFAULT_RELEASE_FOOTER
|
|
26
|
+
} from "./chunk-KO5ZCYSI.js";
|
|
24
27
|
import {
|
|
25
28
|
COLOR_KEYS
|
|
26
29
|
} from "./chunk-HFZRRAQB.js";
|
|
@@ -39,9 +42,12 @@ export {
|
|
|
39
42
|
STORM_DEFAULT_HOMEPAGE,
|
|
40
43
|
STORM_DEFAULT_LICENSE,
|
|
41
44
|
STORM_DEFAULT_LICENSING,
|
|
45
|
+
STORM_DEFAULT_RELEASE_BANNER,
|
|
46
|
+
STORM_DEFAULT_RELEASE_FOOTER,
|
|
42
47
|
SingleThemeColorConfigSchema,
|
|
43
48
|
StormConfigSchema,
|
|
44
49
|
WorkspaceBotConfigSchema,
|
|
45
50
|
WorkspaceDirectoryConfigSchema,
|
|
51
|
+
WorkspaceReleaseConfigSchema,
|
|
46
52
|
defineConfig
|
|
47
53
|
};
|
package/dist/schema.cjs
CHANGED
|
@@ -11,8 +11,9 @@
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
require('./chunk-
|
|
14
|
+
|
|
15
|
+
var _chunk5RAKNLPPcjs = require('./chunk-5RAKNLPP.cjs');
|
|
16
|
+
require('./chunk-CPQUL4OS.cjs');
|
|
16
17
|
require('./chunk-USNT2KNT.cjs');
|
|
17
18
|
|
|
18
19
|
|
|
@@ -27,4 +28,5 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
|
|
32
|
+
exports.ColorConfigMapSchema = _chunk5RAKNLPPcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunk5RAKNLPPcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunk5RAKNLPPcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunk5RAKNLPPcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunk5RAKNLPPcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunk5RAKNLPPcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunk5RAKNLPPcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunk5RAKNLPPcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunk5RAKNLPPcjs.SingleThemeColorConfigSchema; exports.StormConfigSchema = _chunk5RAKNLPPcjs.StormConfigSchema; exports.WorkspaceBotConfigSchema = _chunk5RAKNLPPcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunk5RAKNLPPcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunk5RAKNLPPcjs.WorkspaceReleaseConfigSchema;
|