@storm-software/workspace-tools 1.295.83 → 1.295.84

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/config/base.json +0 -1
  3. package/config/recommended.json +0 -1
  4. package/package.json +10 -10
  5. package/dist/src/executors/cargo-build/schema.d.ts +0 -86
  6. package/dist/src/executors/cargo-check/schema.d.ts +0 -88
  7. package/dist/src/executors/cargo-clippy/schema.d.ts +0 -96
  8. package/dist/src/executors/cargo-doc/schema.d.ts +0 -124
  9. package/dist/src/executors/cargo-format/schema.d.ts +0 -88
  10. package/dist/src/executors/cargo-publish/schema.d.ts +0 -114
  11. package/dist/src/executors/clean-package/schema.d.ts +0 -59
  12. package/dist/src/executors/clean-package/schema.json +0 -55
  13. package/dist/src/executors/esbuild/schema.d.ts +0 -136
  14. package/dist/src/executors/esbuild/schema.json +0 -163
  15. package/dist/src/executors/napi/schema.d.ts +0 -282
  16. package/dist/src/executors/napi/schema.json +0 -235
  17. package/dist/src/executors/npm-publish/schema.d.ts +0 -68
  18. package/dist/src/executors/npm-publish/schema.json +0 -61
  19. package/dist/src/executors/size-limit/schema.d.ts +0 -24
  20. package/dist/src/executors/size-limit/schema.json +0 -26
  21. package/dist/src/executors/tsdown/schema.d.ts +0 -134
  22. package/dist/src/executors/tsdown/schema.json +0 -172
  23. package/dist/src/executors/typia/schema.d.ts +0 -48
  24. package/dist/src/executors/typia/schema.json +0 -57
  25. package/dist/src/executors/unbuild/schema.d.ts +0 -258
  26. package/dist/src/executors/unbuild/schema.json +0 -301
  27. package/dist/src/generators/browser-library/schema.d.ts +0 -122
  28. package/dist/src/generators/browser-library/schema.json +0 -117
  29. package/dist/src/generators/config-schema/schema.d.ts +0 -23
  30. package/dist/src/generators/config-schema/schema.json +0 -24
  31. package/dist/src/generators/init/schema.d.ts +0 -14
  32. package/dist/src/generators/init/schema.json +0 -15
  33. package/dist/src/generators/neutral-library/schema.d.ts +0 -122
  34. package/dist/src/generators/neutral-library/schema.json +0 -116
  35. package/dist/src/generators/node-library/schema.d.ts +0 -122
  36. package/dist/src/generators/node-library/schema.json +0 -117
  37. package/dist/src/generators/preset/schema.d.ts +0 -101
  38. package/dist/src/generators/preset/schema.json +0 -96
@@ -1,172 +0,0 @@
1
- {
2
- "id": "#",
3
- "title": "TSDown Executor",
4
- "description": "A type definition for an TSDown executor schema",
5
- "properties": {
6
- "outputPath": {
7
- "title": "Output Path",
8
- "type": "string",
9
- "format": "path",
10
- "description": "The output path for the build",
11
- "id": "#outputPath"
12
- },
13
- "entry": {
14
- "title": "Entry File(s)",
15
- "format": "path",
16
- "type": "array",
17
- "description": "The entry file or files to build",
18
- "items": {
19
- "type": "string"
20
- },
21
- "id": "#entry",
22
- "default": [
23
- "{sourceRoot}/index.ts"
24
- ]
25
- },
26
- "tsconfig": {
27
- "title": "TSConfig Path",
28
- "type": "string",
29
- "format": "path",
30
- "description": "The path to the tsconfig file",
31
- "id": "#tsconfig",
32
- "default": "{projectRoot}/tsconfig.json"
33
- },
34
- "bundle": {
35
- "title": "Bundle",
36
- "type": "boolean",
37
- "description": "Bundle the output",
38
- "id": "#bundle"
39
- },
40
- "minify": {
41
- "title": "Minify",
42
- "type": "boolean",
43
- "description": "Minify the output",
44
- "id": "#minify"
45
- },
46
- "debug": {
47
- "title": "Debug",
48
- "type": "boolean",
49
- "description": "Debug the output",
50
- "id": "#debug"
51
- },
52
- "sourcemap": {
53
- "title": "Sourcemap",
54
- "type": "boolean",
55
- "description": "Generate a sourcemap",
56
- "id": "#sourcemap"
57
- },
58
- "silent": {
59
- "title": "Silent",
60
- "type": "boolean",
61
- "description": "Should the build run silently - only report errors back to the user",
62
- "id": "#silent",
63
- "default": false
64
- },
65
- "target": {
66
- "title": "Target",
67
- "type": "string",
68
- "description": "The target to build",
69
- "enum": [
70
- "es3",
71
- "es5",
72
- "es6",
73
- "es2015",
74
- "es2016",
75
- "es2017",
76
- "es2018",
77
- "es2019",
78
- "es2020",
79
- "es2021",
80
- "es2022",
81
- "es2023",
82
- "es2024",
83
- "esnext",
84
- "node12",
85
- "node14",
86
- "node16",
87
- "node18",
88
- "node20",
89
- "node22",
90
- "browser",
91
- "chrome58",
92
- "chrome59",
93
- "chrome60"
94
- ],
95
- "id": "#target",
96
- "default": "esnext"
97
- },
98
- "format": {
99
- "title": "Format",
100
- "type": "array",
101
- "description": "The format to build",
102
- "items": {
103
- "type": "string",
104
- "enum": [
105
- "cjs",
106
- "esm",
107
- "iife"
108
- ]
109
- },
110
- "id": "#format",
111
- "default": [
112
- "cjs",
113
- "esm"
114
- ]
115
- },
116
- "platform": {
117
- "title": "Platform",
118
- "type": "string",
119
- "description": "The platform to build",
120
- "enum": [
121
- "neutral",
122
- "node",
123
- "browser"
124
- ],
125
- "id": "#platform",
126
- "default": "neutral"
127
- },
128
- "external": {
129
- "title": "External",
130
- "type": "array",
131
- "description": "The external dependencies",
132
- "id": "#external",
133
- "default": [],
134
- "items": {
135
- "type": "any"
136
- }
137
- },
138
- "define": {
139
- "title": "Define",
140
- "type": "object",
141
- "tsType": "Record<string, string>",
142
- "description": "The define values",
143
- "id": "#define",
144
- "default": {}
145
- },
146
- "env": {
147
- "title": "Environment Variables",
148
- "type": "object",
149
- "tsType": "Record<string, string>",
150
- "description": "The environment variable values",
151
- "id": "#env",
152
- "default": {}
153
- }
154
- },
155
- "type": "object",
156
- "default": {
157
- "entry": [
158
- "{sourceRoot}/index.ts"
159
- ],
160
- "tsconfig": "{projectRoot}/tsconfig.json",
161
- "silent": false,
162
- "target": "esnext",
163
- "format": [
164
- "cjs",
165
- "esm"
166
- ],
167
- "platform": "neutral",
168
- "external": [],
169
- "define": {},
170
- "env": {}
171
- }
172
- }
@@ -1,48 +0,0 @@
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
-
@@ -1,57 +0,0 @@
1
- {
2
- "id": "#",
3
- "title": "Typia Executor",
4
- "description": "A type definition for a Typia executor schema",
5
- "required": [
6
- "entry",
7
- "tsconfig",
8
- "outputPath"
9
- ],
10
- "properties": {
11
- "outputPath": {
12
- "title": "Output Path",
13
- "type": "string",
14
- "format": "path",
15
- "description": "The output path for the build",
16
- "id": "#outputPath",
17
- "default": "{sourceRoot}/__generated__/typia"
18
- },
19
- "entry": {
20
- "title": "Entry File(s)",
21
- "format": "path",
22
- "type": "array",
23
- "description": "The entry file or files to build",
24
- "items": {
25
- "type": "string"
26
- },
27
- "id": "#entry",
28
- "default": [
29
- "{sourceRoot}/index.ts"
30
- ]
31
- },
32
- "tsconfig": {
33
- "title": "TSConfig Path",
34
- "type": "string",
35
- "format": "path",
36
- "description": "The path to the tsconfig file",
37
- "id": "#tsconfig",
38
- "default": "{projectRoot}/tsconfig.json"
39
- },
40
- "clean": {
41
- "title": "Clean",
42
- "type": "boolean",
43
- "description": "Clean the output directory before building",
44
- "id": "#clean",
45
- "default": true
46
- }
47
- },
48
- "type": "object",
49
- "default": {
50
- "outputPath": "{sourceRoot}/__generated__/typia",
51
- "entry": [
52
- "{sourceRoot}/index.ts"
53
- ],
54
- "tsconfig": "{projectRoot}/tsconfig.json",
55
- "clean": true
56
- }
57
- }
@@ -1,258 +0,0 @@
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
-