@storm-software/workspace-tools 1.275.5 → 1.275.6
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 +15 -0
- package/README.md +1 -1
- package/dist/src/executors/typia/schema.d.ts +48 -0
- package/dist/src/executors/unbuild/schema.d.ts +258 -0
- package/dist/src/generators/browser-library/schema.d.ts +122 -0
- package/dist/src/generators/browser-library/schema.json +117 -0
- package/dist/src/generators/config-schema/schema.d.ts +23 -0
- package/dist/src/generators/config-schema/schema.json +24 -0
- package/dist/src/generators/init/schema.d.ts +14 -0
- package/dist/src/generators/init/schema.json +15 -0
- package/dist/src/generators/neutral-library/schema.d.ts +122 -0
- package/dist/src/generators/neutral-library/schema.json +116 -0
- package/dist/src/generators/node-library/schema.d.ts +122 -0
- package/dist/src/generators/node-library/schema.json +117 -0
- package/dist/src/generators/preset/schema.d.ts +101 -0
- package/dist/src/generators/preset/schema.json +96 -0
- package/dist/src/generators/release-version/schema.d.ts +180 -0
- package/dist/src/generators/release-version/schema.json +158 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.275.5](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.275.5) (2025-06-05)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace package links
|
|
10
|
+
- **monorepo:** Regenerate README markdown files
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated prettier to 0.51.18
|
|
15
|
+
- Updated esbuild to 0.44.5
|
|
16
|
+
- Updated esbuild to 0.44.5
|
|
17
|
+
- Updated unbuild to 0.49.5
|
|
18
|
+
- Updated unbuild to 0.49.5
|
|
19
|
+
|
|
5
20
|
## [1.275.4](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.275.4) (2025-06-05)
|
|
6
21
|
|
|
7
22
|
### 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 -->
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface TypiaExecutorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Output Path
|
|
8
|
+
*
|
|
9
|
+
* The output path for the build
|
|
10
|
+
*
|
|
11
|
+
* @default "{sourceRoot}/__generated__/typia"
|
|
12
|
+
*
|
|
13
|
+
* @format path
|
|
14
|
+
*/
|
|
15
|
+
outputPath: string,
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Entry File(s)
|
|
19
|
+
*
|
|
20
|
+
* The entry file or files to build
|
|
21
|
+
*
|
|
22
|
+
* @default ["{sourceRoot}/index.ts"]
|
|
23
|
+
*
|
|
24
|
+
* @format path
|
|
25
|
+
*/
|
|
26
|
+
entry: Array<string>,
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* TSConfig Path
|
|
30
|
+
*
|
|
31
|
+
* The path to the tsconfig file
|
|
32
|
+
*
|
|
33
|
+
* @default "{projectRoot}/tsconfig.json"
|
|
34
|
+
*
|
|
35
|
+
* @format path
|
|
36
|
+
*/
|
|
37
|
+
tsconfig: string,
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Clean
|
|
41
|
+
*
|
|
42
|
+
* Clean the output directory before building
|
|
43
|
+
*
|
|
44
|
+
* @default true
|
|
45
|
+
*/
|
|
46
|
+
clean?: boolean,
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface UnbuildExecutorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Output Path
|
|
8
|
+
*
|
|
9
|
+
* The output path for the build
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* @format path
|
|
13
|
+
*/
|
|
14
|
+
outputPath?: string,
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Input Directory
|
|
18
|
+
*
|
|
19
|
+
* The directory to use as input for the build
|
|
20
|
+
*
|
|
21
|
+
* @default ["{sourceRoot}"]
|
|
22
|
+
*
|
|
23
|
+
* @format path
|
|
24
|
+
*/
|
|
25
|
+
entry: Array<string>,
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* TSConfig Path
|
|
29
|
+
*
|
|
30
|
+
* The path to the tsconfig file
|
|
31
|
+
*
|
|
32
|
+
* @default "{projectRoot}/tsconfig.json"
|
|
33
|
+
*
|
|
34
|
+
* @format path
|
|
35
|
+
*/
|
|
36
|
+
tsconfig?: string,
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Bundle
|
|
40
|
+
*
|
|
41
|
+
* Bundle the output
|
|
42
|
+
*
|
|
43
|
+
*/
|
|
44
|
+
bundle?: boolean,
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Minify
|
|
48
|
+
*
|
|
49
|
+
* Minify the output
|
|
50
|
+
*
|
|
51
|
+
*/
|
|
52
|
+
minify?: boolean,
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Debug
|
|
56
|
+
*
|
|
57
|
+
* Debug the output
|
|
58
|
+
*
|
|
59
|
+
*/
|
|
60
|
+
debug?: boolean,
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Sourcemap
|
|
64
|
+
*
|
|
65
|
+
* Generate a sourcemap
|
|
66
|
+
*
|
|
67
|
+
*/
|
|
68
|
+
sourcemap?: boolean,
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Silent
|
|
72
|
+
*
|
|
73
|
+
* Should the build run silently - only report errors back to the user
|
|
74
|
+
*
|
|
75
|
+
* @default false
|
|
76
|
+
*/
|
|
77
|
+
silent?: boolean,
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Target
|
|
81
|
+
*
|
|
82
|
+
* The target to build
|
|
83
|
+
*
|
|
84
|
+
* @default "esnext"
|
|
85
|
+
*
|
|
86
|
+
* @enum es3,es5,es6,es2015,es2016,es2017,es2018,es2019,es2020,es2021,es2022,es2023,es2024,esnext,node12,node14,node16,node18,node20,node22,browser,chrome58,chrome59,chrome60
|
|
87
|
+
*/
|
|
88
|
+
target?: string,
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Format
|
|
92
|
+
*
|
|
93
|
+
* The format to build
|
|
94
|
+
*
|
|
95
|
+
* @default ["cjs","esm"]
|
|
96
|
+
*/
|
|
97
|
+
format?: Array<string>,
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Platform
|
|
101
|
+
*
|
|
102
|
+
* The platform to build
|
|
103
|
+
*
|
|
104
|
+
* @default "neutral"
|
|
105
|
+
*
|
|
106
|
+
* @enum neutral,node,browser
|
|
107
|
+
*/
|
|
108
|
+
platform?: string,
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* External
|
|
112
|
+
*
|
|
113
|
+
* The external dependencies
|
|
114
|
+
*
|
|
115
|
+
*/
|
|
116
|
+
external?: Array<any>,
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Define
|
|
120
|
+
*
|
|
121
|
+
* The define values
|
|
122
|
+
*
|
|
123
|
+
*/
|
|
124
|
+
define?: Record<string, string>,
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Environment Variables
|
|
128
|
+
*
|
|
129
|
+
* The environment variable values
|
|
130
|
+
*
|
|
131
|
+
*/
|
|
132
|
+
env?: Record<string, string>,
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Name
|
|
136
|
+
*
|
|
137
|
+
* The name of the project/build
|
|
138
|
+
*
|
|
139
|
+
* @default "{projectName}"
|
|
140
|
+
*/
|
|
141
|
+
name: string,
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Tree Shaking
|
|
145
|
+
*
|
|
146
|
+
* Enable tree shaking
|
|
147
|
+
*
|
|
148
|
+
* @default true
|
|
149
|
+
*/
|
|
150
|
+
treeShaking?: boolean,
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Watch
|
|
154
|
+
*
|
|
155
|
+
* Watch for changes
|
|
156
|
+
*
|
|
157
|
+
* @default false
|
|
158
|
+
*/
|
|
159
|
+
watch?: boolean,
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Clean
|
|
163
|
+
*
|
|
164
|
+
* Clean the output directory before building
|
|
165
|
+
*
|
|
166
|
+
* @default true
|
|
167
|
+
*/
|
|
168
|
+
clean?: boolean,
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Stub
|
|
172
|
+
*
|
|
173
|
+
* Stub the output
|
|
174
|
+
*
|
|
175
|
+
* @default false
|
|
176
|
+
*/
|
|
177
|
+
stub?: boolean,
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* Build Only
|
|
181
|
+
*
|
|
182
|
+
* Should the build process skip generating a package.json and copying assets
|
|
183
|
+
*
|
|
184
|
+
* @default false
|
|
185
|
+
*/
|
|
186
|
+
buildOnly?: boolean,
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Watch Options
|
|
190
|
+
*
|
|
191
|
+
* Watch options
|
|
192
|
+
*
|
|
193
|
+
*/
|
|
194
|
+
watchOptions?: {
|
|
195
|
+
[key: string]: any
|
|
196
|
+
},
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Stub Options
|
|
200
|
+
*
|
|
201
|
+
* Stub options
|
|
202
|
+
*
|
|
203
|
+
*/
|
|
204
|
+
stubOptions?: {
|
|
205
|
+
[key: string]: any
|
|
206
|
+
},
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Dependencies
|
|
210
|
+
*
|
|
211
|
+
* The dependencies to install
|
|
212
|
+
*
|
|
213
|
+
*/
|
|
214
|
+
dependencies?: Array<string>,
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Peer Dependencies
|
|
218
|
+
*
|
|
219
|
+
* The peer dependencies to install
|
|
220
|
+
*
|
|
221
|
+
*/
|
|
222
|
+
peerDependencies?: Array<string>,
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Dev Dependencies
|
|
226
|
+
*
|
|
227
|
+
* The dev dependencies to install
|
|
228
|
+
*
|
|
229
|
+
*/
|
|
230
|
+
devDependencies?: Array<string>,
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Alias
|
|
234
|
+
*
|
|
235
|
+
* The alias to use
|
|
236
|
+
*
|
|
237
|
+
*/
|
|
238
|
+
alias?: Record<string, string>,
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Replace
|
|
242
|
+
*
|
|
243
|
+
* The replace to use
|
|
244
|
+
*
|
|
245
|
+
*/
|
|
246
|
+
replace?: Record<string, string>,
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Rollup
|
|
250
|
+
*
|
|
251
|
+
* The rollup options
|
|
252
|
+
*
|
|
253
|
+
*/
|
|
254
|
+
rollup?: {
|
|
255
|
+
[key: string]: any
|
|
256
|
+
},
|
|
257
|
+
}
|
|
258
|
+
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface BrowserLibraryGeneratorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Directory
|
|
8
|
+
*
|
|
9
|
+
* The directory to create the library in
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
directory: string,
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Name
|
|
16
|
+
*
|
|
17
|
+
* The name of the library
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
name: string,
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Description
|
|
24
|
+
*
|
|
25
|
+
* The description of the library
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
description?: string,
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Build Executor
|
|
32
|
+
*
|
|
33
|
+
* The executor to use for building the library
|
|
34
|
+
*
|
|
35
|
+
* @default "@storm-software/workspace-tools:unbuild"
|
|
36
|
+
*/
|
|
37
|
+
buildExecutor?: string,
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Platform
|
|
41
|
+
*
|
|
42
|
+
* The platform to target with the library
|
|
43
|
+
*
|
|
44
|
+
* @default "browser"
|
|
45
|
+
*
|
|
46
|
+
* @enum browser,neutral
|
|
47
|
+
*/
|
|
48
|
+
platform?: string,
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Import Path
|
|
52
|
+
*
|
|
53
|
+
* The import path for the library
|
|
54
|
+
*
|
|
55
|
+
*/
|
|
56
|
+
importPath?: string,
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Tags
|
|
60
|
+
*
|
|
61
|
+
* The tags for the library
|
|
62
|
+
*
|
|
63
|
+
*/
|
|
64
|
+
tags?: string,
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Unit Test Runner
|
|
68
|
+
*
|
|
69
|
+
* The unit test runner to use
|
|
70
|
+
*
|
|
71
|
+
*
|
|
72
|
+
* @enum jest,vitest,none
|
|
73
|
+
*/
|
|
74
|
+
unitTestRunner?: string,
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Test Environment
|
|
78
|
+
*
|
|
79
|
+
* The test environment to use
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @enum jsdom,node
|
|
83
|
+
*/
|
|
84
|
+
testEnvironment?: string,
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Pascal Case Files
|
|
88
|
+
*
|
|
89
|
+
* Use PascalCase for file names
|
|
90
|
+
*
|
|
91
|
+
* @default false
|
|
92
|
+
*/
|
|
93
|
+
pascalCaseFiles?: boolean,
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Strict
|
|
97
|
+
*
|
|
98
|
+
* Enable strict mode
|
|
99
|
+
*
|
|
100
|
+
* @default true
|
|
101
|
+
*/
|
|
102
|
+
strict?: boolean,
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Publishable
|
|
106
|
+
*
|
|
107
|
+
* Make the library publishable
|
|
108
|
+
*
|
|
109
|
+
* @default false
|
|
110
|
+
*/
|
|
111
|
+
publishable?: boolean,
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Buildable
|
|
115
|
+
*
|
|
116
|
+
* Make the library buildable
|
|
117
|
+
*
|
|
118
|
+
* @default true
|
|
119
|
+
*/
|
|
120
|
+
buildable?: boolean,
|
|
121
|
+
}
|
|
122
|
+
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Browser Library Generator",
|
|
4
|
+
"description": "A type definition for a browser library generator schema",
|
|
5
|
+
"required": [
|
|
6
|
+
"directory",
|
|
7
|
+
"name"
|
|
8
|
+
],
|
|
9
|
+
"properties": {
|
|
10
|
+
"directory": {
|
|
11
|
+
"title": "Directory",
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "The directory to create the library in",
|
|
14
|
+
"id": "#directory"
|
|
15
|
+
},
|
|
16
|
+
"name": {
|
|
17
|
+
"title": "Name",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"description": "The name of the library",
|
|
20
|
+
"id": "#name"
|
|
21
|
+
},
|
|
22
|
+
"description": {
|
|
23
|
+
"title": "Description",
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "The description of the library",
|
|
26
|
+
"id": "#description"
|
|
27
|
+
},
|
|
28
|
+
"buildExecutor": {
|
|
29
|
+
"title": "Build Executor",
|
|
30
|
+
"type": "string",
|
|
31
|
+
"description": "The executor to use for building the library",
|
|
32
|
+
"id": "#buildExecutor",
|
|
33
|
+
"default": "@storm-software/workspace-tools:unbuild"
|
|
34
|
+
},
|
|
35
|
+
"platform": {
|
|
36
|
+
"title": "Platform",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"description": "The platform to target with the library",
|
|
39
|
+
"enum": [
|
|
40
|
+
"browser",
|
|
41
|
+
"neutral"
|
|
42
|
+
],
|
|
43
|
+
"id": "#platform",
|
|
44
|
+
"default": "browser"
|
|
45
|
+
},
|
|
46
|
+
"importPath": {
|
|
47
|
+
"title": "Import Path",
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "The import path for the library",
|
|
50
|
+
"id": "#importPath"
|
|
51
|
+
},
|
|
52
|
+
"tags": {
|
|
53
|
+
"title": "Tags",
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "The tags for the library",
|
|
56
|
+
"id": "#tags"
|
|
57
|
+
},
|
|
58
|
+
"unitTestRunner": {
|
|
59
|
+
"title": "Unit Test Runner",
|
|
60
|
+
"type": "string",
|
|
61
|
+
"enum": [
|
|
62
|
+
"jest",
|
|
63
|
+
"vitest",
|
|
64
|
+
"none"
|
|
65
|
+
],
|
|
66
|
+
"description": "The unit test runner to use",
|
|
67
|
+
"id": "#unitTestRunner"
|
|
68
|
+
},
|
|
69
|
+
"testEnvironment": {
|
|
70
|
+
"title": "Test Environment",
|
|
71
|
+
"type": "string",
|
|
72
|
+
"enum": [
|
|
73
|
+
"jsdom",
|
|
74
|
+
"node"
|
|
75
|
+
],
|
|
76
|
+
"description": "The test environment to use",
|
|
77
|
+
"id": "#testEnvironment"
|
|
78
|
+
},
|
|
79
|
+
"pascalCaseFiles": {
|
|
80
|
+
"title": "Pascal Case Files",
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"description": "Use PascalCase for file names",
|
|
83
|
+
"id": "#pascalCaseFiles",
|
|
84
|
+
"default": false
|
|
85
|
+
},
|
|
86
|
+
"strict": {
|
|
87
|
+
"title": "Strict",
|
|
88
|
+
"type": "boolean",
|
|
89
|
+
"description": "Enable strict mode",
|
|
90
|
+
"id": "#strict",
|
|
91
|
+
"default": true
|
|
92
|
+
},
|
|
93
|
+
"publishable": {
|
|
94
|
+
"title": "Publishable",
|
|
95
|
+
"type": "boolean",
|
|
96
|
+
"description": "Make the library publishable",
|
|
97
|
+
"id": "#publishable",
|
|
98
|
+
"default": false
|
|
99
|
+
},
|
|
100
|
+
"buildable": {
|
|
101
|
+
"title": "Buildable",
|
|
102
|
+
"type": "boolean",
|
|
103
|
+
"description": "Make the library buildable",
|
|
104
|
+
"id": "#buildable",
|
|
105
|
+
"default": true
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"type": "object",
|
|
109
|
+
"default": {
|
|
110
|
+
"buildExecutor": "@storm-software/workspace-tools:unbuild",
|
|
111
|
+
"platform": "browser",
|
|
112
|
+
"pascalCaseFiles": false,
|
|
113
|
+
"strict": true,
|
|
114
|
+
"publishable": false,
|
|
115
|
+
"buildable": true
|
|
116
|
+
}
|
|
117
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface ConfigSchemaGeneratorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Directory
|
|
8
|
+
*
|
|
9
|
+
* The directory to create the library in
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
directory?: string,
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Output File
|
|
16
|
+
*
|
|
17
|
+
* The file to write the schema to
|
|
18
|
+
*
|
|
19
|
+
* @default "{workspaceRoot}/storm-workspace.schema.json"
|
|
20
|
+
*/
|
|
21
|
+
outputFile?: string,
|
|
22
|
+
}
|
|
23
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Config Schema Generator",
|
|
4
|
+
"description": "A type definition for a config schema generator schema",
|
|
5
|
+
"properties": {
|
|
6
|
+
"directory": {
|
|
7
|
+
"title": "Directory",
|
|
8
|
+
"type": "string",
|
|
9
|
+
"description": "The directory to create the library in",
|
|
10
|
+
"id": "#directory"
|
|
11
|
+
},
|
|
12
|
+
"outputFile": {
|
|
13
|
+
"title": "Output File",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"description": "The file to write the schema to",
|
|
16
|
+
"id": "#outputFile",
|
|
17
|
+
"default": "{workspaceRoot}/storm-workspace.schema.json"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"type": "object",
|
|
21
|
+
"default": {
|
|
22
|
+
"outputFile": "{workspaceRoot}/storm-workspace.schema.json"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Init Generator",
|
|
4
|
+
"description": "A type definition for an init generator schema",
|
|
5
|
+
"properties": {
|
|
6
|
+
"skipFormat": {
|
|
7
|
+
"title": "Skip Format",
|
|
8
|
+
"type": "boolean",
|
|
9
|
+
"description": "Skip formatting the generated files",
|
|
10
|
+
"id": "#skipFormat"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"type": "object",
|
|
14
|
+
"default": {}
|
|
15
|
+
}
|