@storm-software/workspace-tools 1.295.82 → 1.295.83

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 (49) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.md +1 -1
  3. package/dist/executors.js +4 -4
  4. package/dist/executors.mjs +7 -7
  5. package/dist/generators.js +6 -6
  6. package/dist/generators.mjs +6 -6
  7. package/dist/index.js +10 -10
  8. package/dist/index.mjs +13 -13
  9. package/dist/src/executors/cargo-build/schema.d.ts +86 -0
  10. package/dist/src/executors/cargo-build/schema.json +85 -0
  11. package/dist/src/executors/cargo-check/schema.d.ts +88 -0
  12. package/dist/src/executors/cargo-check/schema.json +86 -0
  13. package/dist/src/executors/cargo-clippy/schema.d.ts +96 -0
  14. package/dist/src/executors/cargo-clippy/schema.json +92 -0
  15. package/dist/src/executors/cargo-doc/schema.d.ts +124 -0
  16. package/dist/src/executors/cargo-doc/schema.json +162 -0
  17. package/dist/src/executors/cargo-format/schema.d.ts +88 -0
  18. package/dist/src/executors/cargo-format/schema.json +86 -0
  19. package/dist/src/executors/cargo-publish/schema.d.ts +114 -0
  20. package/dist/src/executors/cargo-publish/schema.json +105 -0
  21. package/dist/src/executors/clean-package/schema.d.ts +59 -0
  22. package/dist/src/executors/clean-package/schema.json +55 -0
  23. package/dist/src/executors/esbuild/schema.d.ts +136 -0
  24. package/dist/src/executors/esbuild/schema.json +163 -0
  25. package/dist/src/executors/napi/schema.d.ts +282 -0
  26. package/dist/src/executors/napi/schema.json +235 -0
  27. package/dist/src/executors/npm-publish/schema.d.ts +68 -0
  28. package/dist/src/executors/npm-publish/schema.json +61 -0
  29. package/dist/src/executors/size-limit/schema.d.ts +24 -0
  30. package/dist/src/executors/size-limit/schema.json +26 -0
  31. package/dist/src/executors/tsdown/schema.d.ts +134 -0
  32. package/dist/src/executors/tsdown/schema.json +172 -0
  33. package/dist/src/executors/typia/schema.d.ts +48 -0
  34. package/dist/src/executors/typia/schema.json +57 -0
  35. package/dist/src/executors/unbuild/schema.d.ts +258 -0
  36. package/dist/src/executors/unbuild/schema.json +301 -0
  37. package/dist/src/generators/browser-library/schema.d.ts +122 -0
  38. package/dist/src/generators/browser-library/schema.json +117 -0
  39. package/dist/src/generators/config-schema/schema.d.ts +23 -0
  40. package/dist/src/generators/config-schema/schema.json +24 -0
  41. package/dist/src/generators/init/schema.d.ts +14 -0
  42. package/dist/src/generators/init/schema.json +15 -0
  43. package/dist/src/generators/neutral-library/schema.d.ts +122 -0
  44. package/dist/src/generators/neutral-library/schema.json +116 -0
  45. package/dist/src/generators/node-library/schema.d.ts +122 -0
  46. package/dist/src/generators/node-library/schema.json +117 -0
  47. package/dist/src/generators/preset/schema.d.ts +101 -0
  48. package/dist/src/generators/preset/schema.json +96 -0
  49. package/package.json +10 -10
@@ -0,0 +1,114 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface CargoPublishExecutorSchema {
6
+ /**
7
+ * Output Path
8
+ *
9
+ * The output path for the build
10
+ *
11
+ *
12
+ * @format path
13
+ */
14
+ outputPath?: string,
15
+
16
+ /**
17
+ * Cargo.toml Path
18
+ *
19
+ * The path to the Cargo.toml file
20
+ *
21
+ * @default "{projectRoot}/Cargo.toml"
22
+ *
23
+ * @format path
24
+ */
25
+ package?: string,
26
+
27
+ /**
28
+ * Toolchain
29
+ *
30
+ * The type of toolchain to use for the build
31
+ *
32
+ * @default "stable"
33
+ *
34
+ * @enum stable,beta,nightly
35
+ */
36
+ toolchain?: string,
37
+
38
+ /**
39
+ * Target
40
+ *
41
+ * The target to build
42
+ *
43
+ */
44
+ target?: string,
45
+
46
+ /**
47
+ * All Targets
48
+ *
49
+ * Build all targets
50
+ *
51
+ */
52
+ allTargets?: boolean,
53
+
54
+ /**
55
+ * Profile
56
+ *
57
+ * The profile to build
58
+ *
59
+ */
60
+ profile?: string,
61
+
62
+ /**
63
+ * Release
64
+ *
65
+ * Build in release mode
66
+ *
67
+ */
68
+ release?: boolean,
69
+
70
+ /**
71
+ * Features
72
+ *
73
+ * The features to build
74
+ *
75
+ *
76
+ * @oneOf [object Object],[object Object]
77
+ */
78
+ features?: string,
79
+
80
+ /**
81
+ * All Features
82
+ *
83
+ * Build all features
84
+ *
85
+ */
86
+ allFeatures?: boolean,
87
+
88
+ /**
89
+ * Registry
90
+ *
91
+ * The registry to publish to
92
+ *
93
+ */
94
+ registry?: string,
95
+
96
+ /**
97
+ * Package Root
98
+ *
99
+ * The path to the package root
100
+ *
101
+ *
102
+ * @format path
103
+ */
104
+ packageRoot?: string,
105
+
106
+ /**
107
+ * Dry Run
108
+ *
109
+ * Perform a dry run
110
+ *
111
+ */
112
+ dryRun?: boolean,
113
+ }
114
+
@@ -0,0 +1,105 @@
1
+ {
2
+ "id": "#",
3
+ "title": "Cargo Publish Executor",
4
+ "description": "A type definition for a Cargo/rust Publish 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
+ "package": {
14
+ "title": "Cargo.toml Path",
15
+ "type": "string",
16
+ "format": "path",
17
+ "description": "The path to the Cargo.toml file",
18
+ "id": "#package",
19
+ "default": "{projectRoot}/Cargo.toml"
20
+ },
21
+ "toolchain": {
22
+ "title": "Toolchain",
23
+ "description": "The type of toolchain to use for the build",
24
+ "enum": [
25
+ "stable",
26
+ "beta",
27
+ "nightly"
28
+ ],
29
+ "default": "stable",
30
+ "id": "#toolchain",
31
+ "type": "string"
32
+ },
33
+ "target": {
34
+ "title": "Target",
35
+ "type": "string",
36
+ "description": "The target to build",
37
+ "id": "#target"
38
+ },
39
+ "allTargets": {
40
+ "title": "All Targets",
41
+ "type": "boolean",
42
+ "description": "Build all targets",
43
+ "id": "#allTargets"
44
+ },
45
+ "profile": {
46
+ "title": "Profile",
47
+ "type": "string",
48
+ "description": "The profile to build",
49
+ "id": "#profile"
50
+ },
51
+ "release": {
52
+ "title": "Release",
53
+ "type": "boolean",
54
+ "description": "Build in release mode",
55
+ "id": "#release"
56
+ },
57
+ "features": {
58
+ "title": "Features",
59
+ "type": "string",
60
+ "description": "The features to build",
61
+ "oneOf": [
62
+ {
63
+ "type": "string"
64
+ },
65
+ {
66
+ "type": "array",
67
+ "items": {
68
+ "type": "string"
69
+ }
70
+ }
71
+ ],
72
+ "id": "#features"
73
+ },
74
+ "allFeatures": {
75
+ "title": "All Features",
76
+ "type": "boolean",
77
+ "description": "Build all features",
78
+ "id": "#allFeatures"
79
+ },
80
+ "registry": {
81
+ "title": "Registry",
82
+ "type": "string",
83
+ "description": "The registry to publish to",
84
+ "id": "#registry"
85
+ },
86
+ "packageRoot": {
87
+ "title": "Package Root",
88
+ "type": "string",
89
+ "format": "path",
90
+ "description": "The path to the package root",
91
+ "id": "#packageRoot"
92
+ },
93
+ "dryRun": {
94
+ "title": "Dry Run",
95
+ "type": "boolean",
96
+ "description": "Perform a dry run",
97
+ "id": "#dryRun"
98
+ }
99
+ },
100
+ "type": "object",
101
+ "default": {
102
+ "package": "{projectRoot}/Cargo.toml",
103
+ "toolchain": "stable"
104
+ }
105
+ }
@@ -0,0 +1,59 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface CleanPackageExecutorSchema {
6
+ /**
7
+ * Output Path
8
+ *
9
+ * The path to the output
10
+ *
11
+ */
12
+ outputPath?: string,
13
+
14
+ /**
15
+ * Package JSON Path
16
+ *
17
+ * The path to the package.json that will be modified
18
+ *
19
+ * @default "{outputPath}/package.json"
20
+ *
21
+ * @format path
22
+ */
23
+ packageJsonPath?: string,
24
+
25
+ /**
26
+ * Ignored Files
27
+ *
28
+ * The files to ignore
29
+ *
30
+ */
31
+ ignoredFiles?: string,
32
+
33
+ /**
34
+ * Fields
35
+ *
36
+ * The fields to include
37
+ *
38
+ */
39
+ fields?: string,
40
+
41
+ /**
42
+ * Clean Read Me
43
+ *
44
+ * Clean the read me
45
+ *
46
+ * @default true
47
+ */
48
+ cleanReadMe?: boolean,
49
+
50
+ /**
51
+ * Clean Comments
52
+ *
53
+ * Clean the comments
54
+ *
55
+ * @default true
56
+ */
57
+ cleanComments?: boolean,
58
+ }
59
+
@@ -0,0 +1,55 @@
1
+ {
2
+ "id": "#",
3
+ "title": "Clean Package Executor",
4
+ "description": "The clean package executor is responsible for removing unnecessary files and fields from a distributable package to make it as light as possible (for scenarios like edge computing, limited memory environments, etc.)",
5
+ "properties": {
6
+ "outputPath": {
7
+ "title": "Output Path",
8
+ "type": "string",
9
+ "description": "The path to the output",
10
+ "id": "#outputPath"
11
+ },
12
+ "packageJsonPath": {
13
+ "title": "Package JSON Path",
14
+ "type": "string",
15
+ "format": "path",
16
+ "description": "The path to the package.json that will be modified",
17
+ "id": "#packageJsonPath",
18
+ "default": "{outputPath}/package.json"
19
+ },
20
+ "ignoredFiles": {
21
+ "title": "Ignored Files",
22
+ "type": "string",
23
+ "description": "The files to ignore",
24
+ "id": "#ignoredFiles"
25
+ },
26
+ "fields": {
27
+ "title": "Fields",
28
+ "type": "string",
29
+ "description": "The fields to include",
30
+ "id": "#fields",
31
+ "default": []
32
+ },
33
+ "cleanReadMe": {
34
+ "title": "Clean Read Me",
35
+ "type": "boolean",
36
+ "description": "Clean the read me",
37
+ "id": "#cleanReadMe",
38
+ "default": true
39
+ },
40
+ "cleanComments": {
41
+ "title": "Clean Comments",
42
+ "type": "boolean",
43
+ "description": "Clean the comments",
44
+ "id": "#cleanComments",
45
+ "default": true
46
+ }
47
+ },
48
+ "type": "object",
49
+ "default": {
50
+ "packageJsonPath": "{outputPath}/package.json",
51
+ "fields": [],
52
+ "cleanReadMe": true,
53
+ "cleanComments": true
54
+ }
55
+ }
@@ -0,0 +1,136 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface ESBuildExecutorSchema {
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 "esm"
96
+ *
97
+ * @enum cjs,esm,iife
98
+ */
99
+ format?: string,
100
+
101
+ /**
102
+ * Platform
103
+ *
104
+ * The platform to build
105
+ *
106
+ * @default "neutral"
107
+ *
108
+ * @enum neutral,node,browser
109
+ */
110
+ platform?: string,
111
+
112
+ /**
113
+ * External
114
+ *
115
+ * The external dependencies
116
+ *
117
+ */
118
+ external?: Array<any>,
119
+
120
+ /**
121
+ * Define
122
+ *
123
+ * The define values
124
+ *
125
+ */
126
+ define?: Record<string, string>,
127
+
128
+ /**
129
+ * Environment Variables
130
+ *
131
+ * The environment variable values
132
+ *
133
+ */
134
+ env?: Record<string, string>,
135
+ }
136
+
@@ -0,0 +1,163 @@
1
+ {
2
+ "id": "#",
3
+ "title": "ESBuild Executor",
4
+ "description": "A type definition for an ESBuild 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": "string",
101
+ "description": "The format to build",
102
+ "enum": [
103
+ "cjs",
104
+ "esm",
105
+ "iife"
106
+ ],
107
+ "id": "#format",
108
+ "default": "esm"
109
+ },
110
+ "platform": {
111
+ "title": "Platform",
112
+ "type": "string",
113
+ "description": "The platform to build",
114
+ "enum": [
115
+ "neutral",
116
+ "node",
117
+ "browser"
118
+ ],
119
+ "id": "#platform",
120
+ "default": "neutral"
121
+ },
122
+ "external": {
123
+ "title": "External",
124
+ "type": "array",
125
+ "description": "The external dependencies",
126
+ "id": "#external",
127
+ "default": [],
128
+ "items": {
129
+ "type": "any"
130
+ }
131
+ },
132
+ "define": {
133
+ "title": "Define",
134
+ "type": "object",
135
+ "tsType": "Record<string, string>",
136
+ "description": "The define values",
137
+ "id": "#define",
138
+ "default": {}
139
+ },
140
+ "env": {
141
+ "title": "Environment Variables",
142
+ "type": "object",
143
+ "tsType": "Record<string, string>",
144
+ "description": "The environment variable values",
145
+ "id": "#env",
146
+ "default": {}
147
+ }
148
+ },
149
+ "type": "object",
150
+ "default": {
151
+ "entry": [
152
+ "{sourceRoot}/index.ts"
153
+ ],
154
+ "tsconfig": "{projectRoot}/tsconfig.json",
155
+ "silent": false,
156
+ "target": "esnext",
157
+ "format": "esm",
158
+ "platform": "neutral",
159
+ "external": [],
160
+ "define": {},
161
+ "env": {}
162
+ }
163
+ }