@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,96 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface CargoClippyExecutorSchema {
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
+ * Fix
90
+ *
91
+ * Automatically fix issues
92
+ *
93
+ */
94
+ fix?: boolean,
95
+ }
96
+
@@ -0,0 +1,92 @@
1
+ {
2
+ "id": "#",
3
+ "title": "Cargo Clippy Executor",
4
+ "description": "A type definition for a Cargo/rust clippy 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
+ "fix": {
81
+ "title": "Fix",
82
+ "type": "boolean",
83
+ "description": "Automatically fix issues",
84
+ "id": "#fix"
85
+ }
86
+ },
87
+ "type": "object",
88
+ "default": {
89
+ "package": "{projectRoot}/Cargo.toml",
90
+ "toolchain": "stable"
91
+ }
92
+ }
@@ -0,0 +1,124 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface CargoDocExecutorSchema {
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
+ * Library
90
+ *
91
+ * Generate documentation for the library
92
+ *
93
+ * @default {"default":true}
94
+ */
95
+ lib?: boolean,
96
+
97
+ /**
98
+ * Bins
99
+ *
100
+ * Generate documentation for the bins
101
+ *
102
+ * @default {"default":true}
103
+ */
104
+ bins?: boolean,
105
+
106
+ /**
107
+ * Examples
108
+ *
109
+ * Generate documentation for the examples
110
+ *
111
+ * @default {"default":true}
112
+ */
113
+ examples?: boolean,
114
+
115
+ /**
116
+ * No Dependencies
117
+ *
118
+ * Do not generate documentation for dependencies
119
+ *
120
+ * @default {"default":false}
121
+ */
122
+ noDeps?: boolean,
123
+ }
124
+
@@ -0,0 +1,162 @@
1
+ {
2
+ "id": "#",
3
+ "title": "Cargo Doc Executor",
4
+ "description": "A type definition for a Cargo/rust documentation 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
+ "lib": {
81
+ "title": "Library",
82
+ "type": "boolean",
83
+ "description": "Generate documentation for the library",
84
+ "id": "#lib",
85
+ "properties": {
86
+ "default": {
87
+ "type": "boolean",
88
+ "id": "#lib/default",
89
+ "default": true
90
+ }
91
+ },
92
+ "default": {
93
+ "default": true
94
+ }
95
+ },
96
+ "bins": {
97
+ "title": "Bins",
98
+ "type": "boolean",
99
+ "description": "Generate documentation for the bins",
100
+ "id": "#bins",
101
+ "properties": {
102
+ "default": {
103
+ "type": "boolean",
104
+ "id": "#bins/default",
105
+ "default": true
106
+ }
107
+ },
108
+ "default": {
109
+ "default": true
110
+ }
111
+ },
112
+ "examples": {
113
+ "title": "Examples",
114
+ "type": "boolean",
115
+ "description": "Generate documentation for the examples",
116
+ "id": "#examples",
117
+ "properties": {
118
+ "default": {
119
+ "type": "boolean",
120
+ "id": "#examples/default",
121
+ "default": true
122
+ }
123
+ },
124
+ "default": {
125
+ "default": true
126
+ }
127
+ },
128
+ "noDeps": {
129
+ "title": "No Dependencies",
130
+ "type": "boolean",
131
+ "description": "Do not generate documentation for dependencies",
132
+ "id": "#noDeps",
133
+ "properties": {
134
+ "default": {
135
+ "type": "boolean",
136
+ "id": "#noDeps/default",
137
+ "default": false
138
+ }
139
+ },
140
+ "default": {
141
+ "default": false
142
+ }
143
+ }
144
+ },
145
+ "type": "object",
146
+ "default": {
147
+ "package": "{projectRoot}/Cargo.toml",
148
+ "toolchain": "stable",
149
+ "lib": {
150
+ "default": true
151
+ },
152
+ "bins": {
153
+ "default": true
154
+ },
155
+ "examples": {
156
+ "default": true
157
+ },
158
+ "noDeps": {
159
+ "default": false
160
+ }
161
+ }
162
+ }
@@ -0,0 +1,88 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface CargoFormatExecutorSchema {
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
+
@@ -0,0 +1,86 @@
1
+ {
2
+ "id": "#",
3
+ "title": "Cargo Format Executor",
4
+ "description": "A type definition for a Cargo/rust format 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
+ },
81
+ "type": "object",
82
+ "default": {
83
+ "package": "{projectRoot}/Cargo.toml",
84
+ "toolchain": "stable"
85
+ }
86
+ }