@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,235 +0,0 @@
1
- {
2
- "id": "#",
3
- "title": "Napi Executor",
4
- "description": "A type definition for the Napi - Bindings Build executor schema",
5
- "required": [
6
- "outputPath",
7
- "jsBinding",
8
- "dts",
9
- "manifestPath",
10
- "package"
11
- ],
12
- "properties": {
13
- "outputPath": {
14
- "title": "Output Path",
15
- "type": "string",
16
- "format": "path",
17
- "description": "The path to the output directory",
18
- "id": "#outputPath",
19
- "default": "{sourceRoot}"
20
- },
21
- "package": {
22
- "title": "Package Name",
23
- "type": "string",
24
- "description": "Build the specified library or the one at cwd",
25
- "id": "#package"
26
- },
27
- "toolchain": {
28
- "title": "Toolchain",
29
- "description": "The type of toolchain to use for the build",
30
- "enum": [
31
- "stable",
32
- "beta",
33
- "nightly"
34
- ],
35
- "default": "stable",
36
- "id": "#toolchain",
37
- "type": "string"
38
- },
39
- "target": {
40
- "title": "Target Triple",
41
- "type": "string",
42
- "description": "Build for the target triple, bypassed to `cargo build --target`",
43
- "id": "#target"
44
- },
45
- "allTargets": {
46
- "title": "All Targets",
47
- "type": "boolean",
48
- "description": "Build all targets",
49
- "id": "#allTargets"
50
- },
51
- "profile": {
52
- "title": "Cargo Profile",
53
- "type": "string",
54
- "description": "Build artifacts with the specified profile",
55
- "id": "#profile"
56
- },
57
- "release": {
58
- "title": "Release Mode",
59
- "type": "boolean",
60
- "description": "Build in release mode",
61
- "id": "#release"
62
- },
63
- "features": {
64
- "title": "Cargo Features",
65
- "type": "array",
66
- "description": "List of features to activate",
67
- "items": {
68
- "type": "string"
69
- },
70
- "id": "#features"
71
- },
72
- "allFeatures": {
73
- "title": "All Features",
74
- "type": "boolean",
75
- "description": "Activate all available features",
76
- "id": "#allFeatures"
77
- },
78
- "jsBinding": {
79
- "title": "JS Binding File",
80
- "type": "string",
81
- "description": "The path to the output JavaScript file",
82
- "id": "#jsBinding",
83
- "default": "binding.js"
84
- },
85
- "dts": {
86
- "title": "DTS Binding File",
87
- "type": "string",
88
- "description": "The path to the output TypeScript declaration file",
89
- "id": "#dts",
90
- "default": "binding.d.ts"
91
- },
92
- "manifestPath": {
93
- "title": "Manifest Path",
94
- "type": "string",
95
- "format": "path",
96
- "description": "The path to the Cargo.toml manifest file",
97
- "id": "#manifestPath"
98
- },
99
- "cwd": {
100
- "title": "Working Directory",
101
- "type": "string",
102
- "format": "path",
103
- "description": "Working directory where napi command will be executed; other paths are relative to this",
104
- "id": "#cwd"
105
- },
106
- "configPath": {
107
- "title": "NAPI Config Path",
108
- "type": "string",
109
- "format": "path",
110
- "description": "Path to napi config JSON file",
111
- "id": "#configPath"
112
- },
113
- "packageJsonPath": {
114
- "title": "package.json Path",
115
- "type": "string",
116
- "format": "path",
117
- "description": "Path to package.json",
118
- "id": "#packageJsonPath"
119
- },
120
- "targetDir": {
121
- "title": "Cargo Target Dir",
122
- "type": "string",
123
- "format": "path",
124
- "description": "Directory for all crate generated artifacts (cargo build --target-dir)",
125
- "id": "#targetDir"
126
- },
127
- "platform": {
128
- "title": "Platform Suffix",
129
- "type": "boolean",
130
- "description": "Add platform triple to generated Node.js binding file, e.g. [name].linux-x64-gnu.node",
131
- "id": "#platform",
132
- "default": true
133
- },
134
- "jsPackageName": {
135
- "title": "JS Package Name",
136
- "type": "string",
137
- "description": "Package name in generated JS binding file. Works only with --platform",
138
- "id": "#jsPackageName"
139
- },
140
- "constEnum": {
141
- "title": "Const Enum",
142
- "type": "boolean",
143
- "description": "Whether to generate const enum for TypeScript bindings",
144
- "id": "#constEnum"
145
- },
146
- "noJsBinding": {
147
- "title": "Disable JS Binding",
148
- "type": "boolean",
149
- "description": "Disable generation of JS binding file. Works only with --platform",
150
- "id": "#noJsBinding"
151
- },
152
- "dtsHeader": {
153
- "title": "DTS Header",
154
- "type": "string",
155
- "description": "Custom file header for generated type def file (requires typedef feature)",
156
- "id": "#dtsHeader"
157
- },
158
- "noDtsHeader": {
159
- "title": "Disable Default DTS Header",
160
- "type": "boolean",
161
- "description": "Disable default file header for generated type def file (requires typedef feature)",
162
- "id": "#noDtsHeader"
163
- },
164
- "dtsCache": {
165
- "title": "Enable DTS Cache",
166
- "type": "boolean",
167
- "description": "Enable the DTS cache",
168
- "id": "#dtsCache",
169
- "default": true
170
- },
171
- "esm": {
172
- "title": "ESM Output",
173
- "type": "boolean",
174
- "description": "Emit an ESM JS binding file instead of CJS (works only with --platform)",
175
- "id": "#esm"
176
- },
177
- "strip": {
178
- "title": "Strip Binary",
179
- "type": "boolean",
180
- "description": "Strip the library to minimize file size",
181
- "id": "#strip"
182
- },
183
- "verbose": {
184
- "title": "Verbose",
185
- "type": "boolean",
186
- "description": "Verbosely log build command trace",
187
- "id": "#verbose"
188
- },
189
- "bin": {
190
- "title": "Binary",
191
- "type": "string",
192
- "description": "Build only the specified binary",
193
- "id": "#bin"
194
- },
195
- "crossCompile": {
196
- "title": "Cross Compile",
197
- "type": "boolean",
198
- "description": "[experimental] Cross-compile for the specified target with cargo-xwin on Windows and cargo-zigbuild on other platforms",
199
- "id": "#crossCompile"
200
- },
201
- "useCross": {
202
- "title": "Use cross",
203
- "type": "boolean",
204
- "description": "[experimental] Use cross (https://github.com/cross-rs/cross) instead of cargo",
205
- "id": "#useCross"
206
- },
207
- "useNapiCross": {
208
- "title": "Use @napi-rs/cross-toolchain",
209
- "type": "boolean",
210
- "description": "[experimental] Use @napi-rs/cross-toolchain to cross-compile Linux arm/arm64/x64 gnu targets",
211
- "id": "#useNapiCross"
212
- },
213
- "watch": {
214
- "title": "Watch",
215
- "type": "boolean",
216
- "description": "Watch crate changes and build continuously with cargo-watch",
217
- "id": "#watch"
218
- },
219
- "noDefaultFeatures": {
220
- "title": "No Default Features",
221
- "type": "boolean",
222
- "description": "Do not activate the default feature",
223
- "id": "#noDefaultFeatures"
224
- }
225
- },
226
- "type": "object",
227
- "default": {
228
- "outputPath": "{sourceRoot}",
229
- "toolchain": "stable",
230
- "jsBinding": "binding.js",
231
- "dts": "binding.d.ts",
232
- "platform": true,
233
- "dtsCache": true
234
- }
235
- }
@@ -1,68 +0,0 @@
1
-
2
- // Generated by @storm-software/untyped
3
- // Do not edit this file directly
4
-
5
- export interface NpmPublishExecutorSchema {
6
- /**
7
- * Package Root
8
- *
9
- * The path to the package root
10
- *
11
- *
12
- * @format path
13
- */
14
- packageRoot?: string,
15
-
16
- /**
17
- * Registry
18
- *
19
- * The registry to publish to
20
- *
21
- * @default "https://registry.npmjs.org/"
22
- */
23
- registry?: string,
24
-
25
- /**
26
- * Tag
27
- *
28
- * The tag to publish with
29
- *
30
- * @default "latest"
31
- */
32
- tag?: string,
33
-
34
- /**
35
- * Version
36
- *
37
- * The version to publish. If not provided, the version from package.json will be used
38
- *
39
- */
40
- version?: string,
41
-
42
- /**
43
- * One Time Password
44
- *
45
- * The one time password
46
- *
47
- */
48
- otp?: number,
49
-
50
- /**
51
- * Dry Run
52
- *
53
- * Perform a dry run
54
- *
55
- * @default false
56
- */
57
- dryRun?: boolean,
58
-
59
- /**
60
- * First Release
61
- *
62
- * Publish the first release
63
- *
64
- * @default false
65
- */
66
- firstRelease?: boolean,
67
- }
68
-
@@ -1,61 +0,0 @@
1
- {
2
- "id": "#",
3
- "title": "Npm Publish Executor",
4
- "description": "A type definition for a Npm Publish executor schema",
5
- "properties": {
6
- "packageRoot": {
7
- "title": "Package Root",
8
- "type": "string",
9
- "format": "path",
10
- "description": "The path to the package root",
11
- "id": "#packageRoot"
12
- },
13
- "registry": {
14
- "title": "Registry",
15
- "type": "string",
16
- "description": "The registry to publish to",
17
- "id": "#registry",
18
- "default": "https://registry.npmjs.org/"
19
- },
20
- "tag": {
21
- "title": "Tag",
22
- "type": "string",
23
- "description": "The tag to publish with",
24
- "id": "#tag",
25
- "default": "latest"
26
- },
27
- "version": {
28
- "title": "Version",
29
- "type": "string",
30
- "description": "The version to publish. If not provided, the version from package.json will be used",
31
- "id": "#version"
32
- },
33
- "otp": {
34
- "title": "One Time Password",
35
- "type": "number",
36
- "description": "The one time password",
37
- "id": "#otp"
38
- },
39
- "dryRun": {
40
- "title": "Dry Run",
41
- "type": "boolean",
42
- "description": "Perform a dry run",
43
- "id": "#dryRun",
44
- "default": false
45
- },
46
- "firstRelease": {
47
- "title": "First Release",
48
- "type": "boolean",
49
- "description": "Publish the first release",
50
- "id": "#firstRelease",
51
- "default": false
52
- }
53
- },
54
- "type": "object",
55
- "default": {
56
- "registry": "https://registry.npmjs.org/",
57
- "tag": "latest",
58
- "dryRun": false,
59
- "firstRelease": false
60
- }
61
- }
@@ -1,24 +0,0 @@
1
-
2
- // Generated by @storm-software/untyped
3
- // Do not edit this file directly
4
-
5
- export interface SizeLimitExecutorSchema {
6
- /**
7
- * Output Path
8
- *
9
- * The output path for the build
10
- *
11
- *
12
- * @format path
13
- */
14
- outputPath?: string,
15
-
16
- /**
17
- * Entry
18
- *
19
- * The path to the entry file
20
- *
21
- */
22
- entry?: Array<string>,
23
- }
24
-
@@ -1,26 +0,0 @@
1
- {
2
- "id": "#",
3
- "title": "Size Limit Executor",
4
- "description": "A type definition for a Size Limit 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",
15
- "type": "array",
16
- "description": "The path to the entry file",
17
- "items": {
18
- "type": "string",
19
- "format": "path"
20
- },
21
- "id": "#entry"
22
- }
23
- },
24
- "type": "object",
25
- "default": {}
26
- }
@@ -1,134 +0,0 @@
1
-
2
- // Generated by @storm-software/untyped
3
- // Do not edit this file directly
4
-
5
- export interface TSDownExecutorSchema {
6
- /**
7
- * Output Path
8
- *
9
- * The output path for the build
10
- *
11
- *
12
- * @format path
13
- */
14
- outputPath?: string,
15
-
16
- /**
17
- * Entry File(s)
18
- *
19
- * The entry file or files to build
20
- *
21
- * @default ["{sourceRoot}/index.ts"]
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
-