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