@storm-software/workspace-tools 1.269.0 → 1.270.0
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 +52 -0
- package/README.md +2 -1
- package/dist/chunk-A7JGVU4P.js +468 -0
- package/dist/chunk-SRN4D7WO.mjs +468 -0
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/src/executors/npm-publish/executor.js +2 -2
- package/dist/src/executors/npm-publish/executor.mjs +1 -1
- package/docs/executors/rollup.md +88 -0
- package/executors.ts +23 -0
- package/generators.ts +14 -0
- package/index.ts +5 -0
- package/package.json +4 -4
- package/project.json +58 -0
- package/src/base/base-executor.ts +200 -0
- package/src/base/base-executor.untyped.ts +18 -0
- package/src/base/base-generator.ts +130 -0
- package/src/base/base-generator.untyped.ts +16 -0
- package/src/base/cargo-base-executor.untyped.ts +73 -0
- package/src/base/index.ts +8 -0
- package/src/base/typescript-build-executor.untyped.ts +153 -0
- package/src/base/typescript-library-generator.ts +415 -0
- package/src/base/typescript-library-generator.untyped.ts +106 -0
- package/src/executors/cargo-build/executor.spec.ts +18 -0
- package/src/executors/cargo-build/executor.ts +28 -0
- package/src/executors/cargo-build/untyped.ts +18 -0
- package/src/executors/cargo-check/executor.spec.ts +18 -0
- package/src/executors/cargo-check/executor.ts +27 -0
- package/src/executors/cargo-check/untyped.ts +11 -0
- package/src/executors/cargo-clippy/executor.spec.ts +18 -0
- package/src/executors/cargo-clippy/executor.ts +28 -0
- package/src/executors/cargo-clippy/untyped.ts +18 -0
- package/src/executors/cargo-doc/executor.spec.ts +18 -0
- package/src/executors/cargo-doc/executor.ts +39 -0
- package/src/executors/cargo-doc/untyped.ts +44 -0
- package/src/executors/cargo-format/executor.spec.ts +18 -0
- package/src/executors/cargo-format/executor.ts +28 -0
- package/src/executors/cargo-format/untyped.ts +11 -0
- package/src/executors/cargo-publish/executor.spec.ts +11 -0
- package/src/executors/cargo-publish/executor.ts +139 -0
- package/src/executors/cargo-publish/untyped.ts +33 -0
- package/src/executors/clean-package/constants.ts +99 -0
- package/src/executors/clean-package/executor.spec.ts +18 -0
- package/src/executors/clean-package/executor.ts +214 -0
- package/src/executors/clean-package/types.ts +6 -0
- package/src/executors/clean-package/untyped.ts +60 -0
- package/src/executors/clean-package/utils.ts +85 -0
- package/src/executors/esbuild/executor.spec.ts +11 -0
- package/src/executors/esbuild/executor.ts +67 -0
- package/src/executors/esbuild/untyped.ts +20 -0
- package/src/executors/npm-publish/executor.spec.ts +11 -0
- package/src/executors/npm-publish/executor.ts +681 -0
- package/src/executors/npm-publish/untyped.ts +56 -0
- package/src/executors/size-limit/executor.spec.ts +18 -0
- package/src/executors/size-limit/executor.ts +88 -0
- package/src/executors/size-limit/untyped.ts +22 -0
- package/src/executors/typia/executor.ts +54 -0
- package/src/executors/typia/untyped.ts +48 -0
- package/src/executors/unbuild/executor.spec.ts +11 -0
- package/src/executors/unbuild/executor.ts +136 -0
- package/src/executors/unbuild/untyped.ts +152 -0
- package/src/generators/browser-library/generator.spec.ts +20 -0
- package/src/generators/browser-library/generator.ts +109 -0
- package/src/generators/browser-library/untyped.ts +29 -0
- package/src/generators/config-schema/generator.spec.ts +20 -0
- package/src/generators/config-schema/generator.ts +90 -0
- package/src/generators/config-schema/untyped.ts +19 -0
- package/src/generators/init/init.ts +32 -0
- package/src/generators/init/untyped.ts +16 -0
- package/src/generators/neutral-library/generator.spec.ts +20 -0
- package/src/generators/neutral-library/generator.ts +81 -0
- package/src/generators/neutral-library/untyped.ts +29 -0
- package/src/generators/node-library/generator.spec.ts +20 -0
- package/src/generators/node-library/generator.ts +84 -0
- package/src/generators/node-library/untyped.ts +29 -0
- package/src/generators/preset/files/.all-contributorsrc.template +48 -0
- package/src/generators/preset/files/.editorconfig +454 -0
- package/src/generators/preset/files/.env.template +38 -0
- package/src/generators/preset/files/.gitattributes +52 -0
- package/src/generators/preset/files/.github/.nvmrc +1 -0
- package/src/generators/preset/files/.github/CODEOWNERS +3 -0
- package/src/generators/preset/files/.github/CODE_OF_CONDUCT.md +125 -0
- package/src/generators/preset/files/.github/CONTRIBUTING.md.template +15 -0
- package/src/generators/preset/files/.github/FUNDING.yml +3 -0
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +102 -0
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +56 -0
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +60 -0
- package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +39 -0
- package/src/generators/preset/files/.github/SECURITY.md +9 -0
- package/src/generators/preset/files/.github/codecov.yml +29 -0
- package/src/generators/preset/files/.github/dependabot.yml +64 -0
- package/src/generators/preset/files/.github/labels.yml +84 -0
- package/src/generators/preset/files/.github/renovate.json +4 -0
- package/src/generators/preset/files/.github/renovate.json.template +63 -0
- package/src/generators/preset/files/.github/stale.yml +55 -0
- package/src/generators/preset/files/.github/workflows/build-release.yml.template +25 -0
- package/src/generators/preset/files/.github/workflows/code-review.yml +18 -0
- package/src/generators/preset/files/.github/workflows/codeql.yml +84 -0
- package/src/generators/preset/files/.github/workflows/dependabot-update.yml +32 -0
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +23 -0
- package/src/generators/preset/files/.github/workflows/greetings.yml +31 -0
- package/src/generators/preset/files/.github/workflows/labels.yml +31 -0
- package/src/generators/preset/files/.github/workflows/lock.yml +26 -0
- package/src/generators/preset/files/.log4brains.yml.template +5 -0
- package/src/generators/preset/files/.markdownlint.json +155 -0
- package/src/generators/preset/files/.verdaccio/config.yml.template +40 -0
- package/src/generators/preset/files/.vscode/README.md +32 -0
- package/src/generators/preset/files/.vscode/cspell.json +3 -0
- package/src/generators/preset/files/.vscode/extensions.json +14 -0
- package/src/generators/preset/files/.vscode/launch.json +37 -0
- package/src/generators/preset/files/.vscode/settings.json +401 -0
- package/src/generators/preset/files/.vscode/tasks.json +4 -0
- package/src/generators/preset/files/.whitesource +14 -0
- package/src/generators/preset/files/assets/diagrams/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/dark/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/light/.gitkeep +0 -0
- package/src/generators/preset/files/assets/logos/.gitkeep +0 -0
- package/src/generators/preset/files/docs/api-reference/.gitkeep +0 -0
- package/src/generators/preset/generator.spec.ts +20 -0
- package/src/generators/preset/generator.ts +315 -0
- package/src/generators/preset/untyped.ts +88 -0
- package/src/generators/release-version/generator.spec.ts +20 -0
- package/src/generators/release-version/generator.ts +920 -0
- package/src/generators/release-version/untyped.ts +156 -0
- package/src/plugins/rust/cargo-toml.ts +434 -0
- package/src/plugins/rust/index.ts +1 -0
- package/src/plugins/typescript/index.ts +1 -0
- package/src/plugins/typescript/project-config.ts +564 -0
- package/src/plugins/typescript/tsup.ts +198 -0
- package/src/types.ts +130 -0
- package/src/utils/apply-workspace-tokens.ts +73 -0
- package/src/utils/cargo.ts +219 -0
- package/src/utils/create-cli-options.ts +23 -0
- package/src/utils/get-project-configurations.ts +27 -0
- package/src/utils/index.ts +12 -0
- package/src/utils/lock-file.ts +159 -0
- package/src/utils/package-helpers.ts +54 -0
- package/src/utils/plugin-helpers.ts +112 -0
- package/src/utils/pnpm-deps-update.ts +111 -0
- package/src/utils/project-tags.ts +162 -0
- package/src/utils/toml.ts +204 -0
- package/src/utils/typia-transform.ts +8 -0
- package/src/utils/versions.ts +19 -0
- package/tsconfig.json +30 -0
- package/tsup.config.ts +36 -0
- package/dist/chunk-62LQXZNY.js +0 -282
- package/dist/chunk-F3VG4R53.mjs +0 -282
- package/dist/src/generators/preset/files/LICENSE +0 -201
- package/docs/api/base/base-executor.schema.md +0 -16
- package/docs/api/base/base-generator.schema.md +0 -15
- package/docs/api/base/cargo-base-executor.schema.md +0 -90
- package/docs/api/base/typescript-build-executor.schema.md +0 -126
- package/docs/api/base/typescript-library-generator.schema.md +0 -129
- package/docs/api/executors/cargo-build/schema.md +0 -89
- package/docs/api/executors/cargo-check/schema.md +0 -90
- package/docs/api/executors/cargo-clippy/schema.md +0 -99
- package/docs/api/executors/cargo-doc/schema.md +0 -130
- package/docs/api/executors/cargo-format/schema.md +0 -90
- package/docs/api/executors/cargo-publish/schema.md +0 -117
- package/docs/api/executors/clean-package/schema.md +0 -65
- package/docs/api/executors/esbuild/schema.md +0 -126
- package/docs/api/executors/npm-publish/schema.md +0 -64
- package/docs/api/executors/size-limit/schema.md +0 -25
- package/docs/api/executors/typia/schema.md +0 -46
- package/docs/api/executors/unbuild/schema.md +0 -222
- package/docs/api/generators/browser-library/files/README.md +0 -58
- package/docs/api/generators/browser-library/schema.md +0 -129
- package/docs/api/generators/config-schema/schema.md +0 -25
- package/docs/api/generators/init/schema.md +0 -15
- package/docs/api/generators/neutral-library/files/README.md +0 -58
- package/docs/api/generators/neutral-library/schema.md +0 -129
- package/docs/api/generators/node-library/files/README.md +0 -63
- package/docs/api/generators/node-library/schema.md +0 -129
- package/docs/api/generators/preset/schema.md +0 -110
- package/docs/api/generators/release-version/schema.md +0 -160
- /package/{dist/src → src}/base/base-executor.schema.d.ts +0 -0
- /package/{dist/src → src}/base/base-executor.schema.json +0 -0
- /package/{dist/src → src}/base/base-executor.schema.md +0 -0
- /package/{dist/src → src}/base/base-generator.schema.d.ts +0 -0
- /package/{dist/src → src}/base/base-generator.schema.json +0 -0
- /package/{dist/src → src}/base/base-generator.schema.md +0 -0
- /package/{dist/src → src}/base/cargo-base-executor.schema.d.ts +0 -0
- /package/{dist/src → src}/base/cargo-base-executor.schema.json +0 -0
- /package/{dist/src → src}/base/cargo-base-executor.schema.md +0 -0
- /package/{dist/src → src}/base/typescript-build-executor.schema.d.ts +0 -0
- /package/{dist/src → src}/base/typescript-build-executor.schema.json +0 -0
- /package/{dist/src → src}/base/typescript-build-executor.schema.md +0 -0
- /package/{dist/src → src}/base/typescript-library-generator.schema.d.ts +0 -0
- /package/{dist/src → src}/base/typescript-library-generator.schema.json +0 -0
- /package/{dist/src → src}/base/typescript-library-generator.schema.md +0 -0
- /package/{dist/src → src}/executors/cargo-build/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/cargo-build/schema.json +0 -0
- /package/{dist/src → src}/executors/cargo-build/schema.md +0 -0
- /package/{dist/src → src}/executors/cargo-check/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/cargo-check/schema.json +0 -0
- /package/{dist/src → src}/executors/cargo-check/schema.md +0 -0
- /package/{dist/src → src}/executors/cargo-clippy/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/cargo-clippy/schema.json +0 -0
- /package/{dist/src → src}/executors/cargo-clippy/schema.md +0 -0
- /package/{dist/src → src}/executors/cargo-doc/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/cargo-doc/schema.json +0 -0
- /package/{dist/src → src}/executors/cargo-doc/schema.md +0 -0
- /package/{dist/src → src}/executors/cargo-format/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/cargo-format/schema.json +0 -0
- /package/{dist/src → src}/executors/cargo-format/schema.md +0 -0
- /package/{dist/src → src}/executors/cargo-publish/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/cargo-publish/schema.json +0 -0
- /package/{dist/src → src}/executors/cargo-publish/schema.md +0 -0
- /package/{dist/src → src}/executors/clean-package/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/clean-package/schema.json +0 -0
- /package/{dist/src → src}/executors/clean-package/schema.md +0 -0
- /package/{dist/src → src}/executors/esbuild/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/esbuild/schema.json +0 -0
- /package/{dist/src → src}/executors/esbuild/schema.md +0 -0
- /package/{dist/src → src}/executors/npm-publish/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/npm-publish/schema.json +0 -0
- /package/{dist/src → src}/executors/npm-publish/schema.md +0 -0
- /package/{dist/src → src}/executors/size-limit/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/size-limit/schema.json +0 -0
- /package/{dist/src → src}/executors/size-limit/schema.md +0 -0
- /package/{dist/src → src}/executors/typia/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/typia/schema.json +0 -0
- /package/{dist/src → src}/executors/typia/schema.md +0 -0
- /package/{dist/src → src}/executors/unbuild/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/unbuild/schema.json +0 -0
- /package/{dist/src → src}/executors/unbuild/schema.md +0 -0
- /package/{dist/src → src}/generators/browser-library/files/README.md +0 -0
- /package/{dist/src → src}/generators/browser-library/files/jest.config.ts +0 -0
- /package/{dist/src → src}/generators/browser-library/files/src/index.ts.template +0 -0
- /package/{dist/src → src}/generators/browser-library/files/tsconfig.spec.json +0 -0
- /package/{dist/src → src}/generators/browser-library/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/browser-library/schema.json +0 -0
- /package/{dist/src → src}/generators/browser-library/schema.md +0 -0
- /package/{dist/src → src}/generators/config-schema/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/config-schema/schema.json +0 -0
- /package/{dist/src → src}/generators/config-schema/schema.md +0 -0
- /package/{dist/src → src}/generators/init/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/init/schema.json +0 -0
- /package/{dist/src → src}/generators/init/schema.md +0 -0
- /package/{dist/src → src}/generators/neutral-library/files/README.md +0 -0
- /package/{dist/src → src}/generators/neutral-library/files/jest.config.ts +0 -0
- /package/{dist/src → src}/generators/neutral-library/files/src/index.ts.template +0 -0
- /package/{dist/src → src}/generators/neutral-library/files/tsconfig.spec.json +0 -0
- /package/{dist/src → src}/generators/neutral-library/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/neutral-library/schema.json +0 -0
- /package/{dist/src → src}/generators/neutral-library/schema.md +0 -0
- /package/{dist/src → src}/generators/node-library/files/README.md +0 -0
- /package/{dist/src → src}/generators/node-library/files/jest.config.ts +0 -0
- /package/{dist/src → src}/generators/node-library/files/src/index.ts.template +0 -0
- /package/{dist/src → src}/generators/node-library/files/tsconfig.spec.json +0 -0
- /package/{dist/src → src}/generators/node-library/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/node-library/schema.json +0 -0
- /package/{dist/src → src}/generators/node-library/schema.md +0 -0
- /package/{LICENSE → src/generators/preset/files/LICENSE} +0 -0
- /package/{dist/src → src}/generators/preset/files/README.md.template +0 -0
- /package/{dist/src → src}/generators/preset/files/docs/readme-templates/README.footer.md.template +0 -0
- /package/{dist/src → src}/generators/preset/files/docs/readme-templates/README.header.md.template +0 -0
- /package/{dist/src → src}/generators/preset/files/eslint.config.js.template +0 -0
- /package/{dist/src → src}/generators/preset/files/knip.json +0 -0
- /package/{dist/src → src}/generators/preset/files/lefthook.json +0 -0
- /package/{dist/src → src}/generators/preset/files/nx.json +0 -0
- /package/{dist/src → src}/generators/preset/files/pnpm-workspace.yaml +0 -0
- /package/{dist/src → src}/generators/preset/files/socket.yaml +0 -0
- /package/{dist/src → src}/generators/preset/files/storm.json.template +0 -0
- /package/{dist/src → src}/generators/preset/files/tsconfig.base.json.template +0 -0
- /package/{dist/src → src}/generators/preset/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/preset/schema.json +0 -0
- /package/{dist/src → src}/generators/preset/schema.md +0 -0
- /package/{dist/src → src}/generators/release-version/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/release-version/schema.json +0 -0
- /package/{dist/src → src}/generators/release-version/schema.md +0 -0
- /package/{dist/src → src}/plugins/typescript/untyped-schema.ts +0 -0
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generated by @storm-software/untyped -->
|
|
3
|
-
<!-- Do not edit this file directly -->
|
|
4
|
-
|
|
5
|
-
# TypeScript Build Executor
|
|
6
|
-
|
|
7
|
-
## `outputPath`
|
|
8
|
-
- **Type**: `string`
|
|
9
|
-
- **Default**: `"dist/{projectRoot}"`
|
|
10
|
-
|
|
11
|
-
> Output Path
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
The output path for the build
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## `entry`
|
|
18
|
-
- **Type**: `array`
|
|
19
|
-
- **Default**: `["{sourceRoot}/index.ts"]`
|
|
20
|
-
|
|
21
|
-
> Entry File(s)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
The entry file or files to build
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## `tsconfig`
|
|
28
|
-
- **Type**: `string`
|
|
29
|
-
- **Default**: `"{projectRoot}/tsconfig.json"`
|
|
30
|
-
|
|
31
|
-
> TSConfig Path
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
The path to the tsconfig file
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## `bundle`
|
|
38
|
-
- **Type**: `boolean`
|
|
39
|
-
|
|
40
|
-
> Bundle
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
Bundle the output
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## `minify`
|
|
47
|
-
- **Type**: `boolean`
|
|
48
|
-
|
|
49
|
-
> Minify
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
Minify the output
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## `debug`
|
|
56
|
-
- **Type**: `boolean`
|
|
57
|
-
|
|
58
|
-
> Debug
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
Debug the output
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
## `sourcemap`
|
|
65
|
-
- **Type**: `boolean`
|
|
66
|
-
|
|
67
|
-
> Sourcemap
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
Generate a sourcemap
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
## `silent`
|
|
74
|
-
- **Type**: `boolean`
|
|
75
|
-
- **Default**: `false`
|
|
76
|
-
|
|
77
|
-
> Silent
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
Should the build run silently - only report errors back to the user
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
## `target`
|
|
84
|
-
- **Type**: `string`
|
|
85
|
-
- **Default**: `"esnext"`
|
|
86
|
-
|
|
87
|
-
> Target
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
The target to build
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
## `format`
|
|
94
|
-
- **Type**: `array`
|
|
95
|
-
- **Default**: `["cjs","esm"]`
|
|
96
|
-
|
|
97
|
-
> Format
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
The format to build
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
## `platform`
|
|
104
|
-
- **Type**: `string`
|
|
105
|
-
- **Default**: `"neutral"`
|
|
106
|
-
|
|
107
|
-
> Platform
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
The platform to build
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
## `external`
|
|
114
|
-
- **Type**: `array`
|
|
115
|
-
- **Default**: `[]`
|
|
116
|
-
|
|
117
|
-
> External
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
The external dependencies
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
## `define`
|
|
124
|
-
|
|
125
|
-
## `env`
|
|
126
|
-
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generated by @storm-software/untyped -->
|
|
3
|
-
<!-- Do not edit this file directly -->
|
|
4
|
-
|
|
5
|
-
# TypeScript Library Generator
|
|
6
|
-
|
|
7
|
-
## `directory`
|
|
8
|
-
- **Type**: `string`
|
|
9
|
-
|
|
10
|
-
> Directory
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
The directory to create the library in
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
## `name`
|
|
17
|
-
- **Type**: `string`
|
|
18
|
-
|
|
19
|
-
> Name
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
The name of the library
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## `description`
|
|
26
|
-
- **Type**: `string`
|
|
27
|
-
|
|
28
|
-
> Description
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
The description of the library
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
## `buildExecutor`
|
|
35
|
-
- **Type**: `string`
|
|
36
|
-
- **Default**: `"@storm-software/workspace-tools:unbuild"`
|
|
37
|
-
|
|
38
|
-
> Build Executor
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
The executor to use for building the library
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
## `platform`
|
|
45
|
-
- **Type**: `string`
|
|
46
|
-
- **Default**: `"neutral"`
|
|
47
|
-
|
|
48
|
-
> Platform
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
The platform to target with the library
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
## `importPath`
|
|
55
|
-
- **Type**: `string`
|
|
56
|
-
|
|
57
|
-
> Import Path
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
The import path for the library
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
## `tags`
|
|
64
|
-
- **Type**: `string`
|
|
65
|
-
|
|
66
|
-
> Tags
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
The tags for the library
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
## `unitTestRunner`
|
|
73
|
-
- **Type**: `string`
|
|
74
|
-
|
|
75
|
-
> Unit Test Runner
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
The unit test runner to use
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
## `testEnvironment`
|
|
82
|
-
- **Type**: `string`
|
|
83
|
-
|
|
84
|
-
> Test Environment
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
The test environment to use
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
## `pascalCaseFiles`
|
|
91
|
-
- **Type**: `boolean`
|
|
92
|
-
- **Default**: `false`
|
|
93
|
-
|
|
94
|
-
> Pascal Case Files
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
Use PascalCase for file names
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
## `strict`
|
|
101
|
-
- **Type**: `boolean`
|
|
102
|
-
- **Default**: `true`
|
|
103
|
-
|
|
104
|
-
> Strict
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
Enable strict mode
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
## `publishable`
|
|
111
|
-
- **Type**: `boolean`
|
|
112
|
-
- **Default**: `false`
|
|
113
|
-
|
|
114
|
-
> Publishable
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
Make the library publishable
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
## `buildable`
|
|
121
|
-
- **Type**: `boolean`
|
|
122
|
-
- **Default**: `true`
|
|
123
|
-
|
|
124
|
-
> Buildable
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
Make the library buildable
|
|
128
|
-
|
|
129
|
-
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generated by @storm-software/untyped -->
|
|
3
|
-
<!-- Do not edit this file directly -->
|
|
4
|
-
|
|
5
|
-
# Cargo Build Executor
|
|
6
|
-
|
|
7
|
-
## `outputPath`
|
|
8
|
-
- **Type**: `string`
|
|
9
|
-
|
|
10
|
-
> Output Path
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
The path to the output directory
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
## `package`
|
|
17
|
-
- **Type**: `string`
|
|
18
|
-
- **Default**: `"{projectRoot}/Cargo.toml"`
|
|
19
|
-
|
|
20
|
-
> Cargo.toml Path
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
The path to the Cargo.toml file
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
## `toolchain`
|
|
27
|
-
- **Type**: `string`
|
|
28
|
-
- **Default**: `"stable"`
|
|
29
|
-
|
|
30
|
-
> Toolchain
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
The type of toolchain to use for the build
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
## `target`
|
|
37
|
-
- **Type**: `string`
|
|
38
|
-
|
|
39
|
-
> Target
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
The target to build
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
## `allTargets`
|
|
46
|
-
- **Type**: `boolean`
|
|
47
|
-
|
|
48
|
-
> All Targets
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
Build all targets
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
## `profile`
|
|
55
|
-
- **Type**: `string`
|
|
56
|
-
|
|
57
|
-
> Profile
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
The profile to build
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
## `release`
|
|
64
|
-
- **Type**: `boolean`
|
|
65
|
-
|
|
66
|
-
> Release
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
Build in release mode
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
## `features`
|
|
73
|
-
- **Type**: `string`
|
|
74
|
-
|
|
75
|
-
> Features
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
The features to build
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
## `allFeatures`
|
|
82
|
-
- **Type**: `boolean`
|
|
83
|
-
|
|
84
|
-
> All Features
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
Build all features
|
|
88
|
-
|
|
89
|
-
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generated by @storm-software/untyped -->
|
|
3
|
-
<!-- Do not edit this file directly -->
|
|
4
|
-
|
|
5
|
-
# Cargo Check Executor
|
|
6
|
-
|
|
7
|
-
## `outputPath`
|
|
8
|
-
- **Type**: `string`
|
|
9
|
-
- **Default**: `"dist/{projectRoot}"`
|
|
10
|
-
|
|
11
|
-
> Output Path
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
The output path for the build
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## `package`
|
|
18
|
-
- **Type**: `string`
|
|
19
|
-
- **Default**: `"{projectRoot}/Cargo.toml"`
|
|
20
|
-
|
|
21
|
-
> Cargo.toml Path
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
The path to the Cargo.toml file
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## `toolchain`
|
|
28
|
-
- **Type**: `string`
|
|
29
|
-
- **Default**: `"stable"`
|
|
30
|
-
|
|
31
|
-
> Toolchain
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
The type of toolchain to use for the build
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## `target`
|
|
38
|
-
- **Type**: `string`
|
|
39
|
-
|
|
40
|
-
> Target
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
The target to build
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## `allTargets`
|
|
47
|
-
- **Type**: `boolean`
|
|
48
|
-
|
|
49
|
-
> All Targets
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
Build all targets
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## `profile`
|
|
56
|
-
- **Type**: `string`
|
|
57
|
-
|
|
58
|
-
> Profile
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
The profile to build
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
## `release`
|
|
65
|
-
- **Type**: `boolean`
|
|
66
|
-
|
|
67
|
-
> Release
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
Build in release mode
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
## `features`
|
|
74
|
-
- **Type**: `string`
|
|
75
|
-
|
|
76
|
-
> Features
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
The features to build
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## `allFeatures`
|
|
83
|
-
- **Type**: `boolean`
|
|
84
|
-
|
|
85
|
-
> All Features
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
Build all features
|
|
89
|
-
|
|
90
|
-
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generated by @storm-software/untyped -->
|
|
3
|
-
<!-- Do not edit this file directly -->
|
|
4
|
-
|
|
5
|
-
# Cargo Clippy Executor
|
|
6
|
-
|
|
7
|
-
## `outputPath`
|
|
8
|
-
- **Type**: `string`
|
|
9
|
-
- **Default**: `"dist/{projectRoot}"`
|
|
10
|
-
|
|
11
|
-
> Output Path
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
The output path for the build
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## `package`
|
|
18
|
-
- **Type**: `string`
|
|
19
|
-
- **Default**: `"{projectRoot}/Cargo.toml"`
|
|
20
|
-
|
|
21
|
-
> Cargo.toml Path
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
The path to the Cargo.toml file
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## `toolchain`
|
|
28
|
-
- **Type**: `string`
|
|
29
|
-
- **Default**: `"stable"`
|
|
30
|
-
|
|
31
|
-
> Toolchain
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
The type of toolchain to use for the build
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## `target`
|
|
38
|
-
- **Type**: `string`
|
|
39
|
-
|
|
40
|
-
> Target
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
The target to build
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## `allTargets`
|
|
47
|
-
- **Type**: `boolean`
|
|
48
|
-
|
|
49
|
-
> All Targets
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
Build all targets
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## `profile`
|
|
56
|
-
- **Type**: `string`
|
|
57
|
-
|
|
58
|
-
> Profile
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
The profile to build
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
## `release`
|
|
65
|
-
- **Type**: `boolean`
|
|
66
|
-
|
|
67
|
-
> Release
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
Build in release mode
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
## `features`
|
|
74
|
-
- **Type**: `string`
|
|
75
|
-
|
|
76
|
-
> Features
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
The features to build
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## `allFeatures`
|
|
83
|
-
- **Type**: `boolean`
|
|
84
|
-
|
|
85
|
-
> All Features
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
Build all features
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## `fix`
|
|
92
|
-
- **Type**: `boolean`
|
|
93
|
-
|
|
94
|
-
> Fix
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
Automatically fix issues
|
|
98
|
-
|
|
99
|
-
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generated by @storm-software/untyped -->
|
|
3
|
-
<!-- Do not edit this file directly -->
|
|
4
|
-
|
|
5
|
-
# Cargo Doc Executor
|
|
6
|
-
|
|
7
|
-
## `outputPath`
|
|
8
|
-
- **Type**: `string`
|
|
9
|
-
- **Default**: `"dist/{projectRoot}"`
|
|
10
|
-
|
|
11
|
-
> Output Path
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
The output path for the build
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## `package`
|
|
18
|
-
- **Type**: `string`
|
|
19
|
-
- **Default**: `"{projectRoot}/Cargo.toml"`
|
|
20
|
-
|
|
21
|
-
> Cargo.toml Path
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
The path to the Cargo.toml file
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## `toolchain`
|
|
28
|
-
- **Type**: `string`
|
|
29
|
-
- **Default**: `"stable"`
|
|
30
|
-
|
|
31
|
-
> Toolchain
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
The type of toolchain to use for the build
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## `target`
|
|
38
|
-
- **Type**: `string`
|
|
39
|
-
|
|
40
|
-
> Target
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
The target to build
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## `allTargets`
|
|
47
|
-
- **Type**: `boolean`
|
|
48
|
-
|
|
49
|
-
> All Targets
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
Build all targets
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## `profile`
|
|
56
|
-
- **Type**: `string`
|
|
57
|
-
|
|
58
|
-
> Profile
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
The profile to build
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
## `release`
|
|
65
|
-
- **Type**: `boolean`
|
|
66
|
-
|
|
67
|
-
> Release
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
Build in release mode
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
## `features`
|
|
74
|
-
- **Type**: `string`
|
|
75
|
-
|
|
76
|
-
> Features
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
The features to build
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## `allFeatures`
|
|
83
|
-
- **Type**: `boolean`
|
|
84
|
-
|
|
85
|
-
> All Features
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
Build all features
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## `lib`
|
|
92
|
-
- **Type**: `boolean`
|
|
93
|
-
- **Default**: `{"default":true}`
|
|
94
|
-
|
|
95
|
-
> Library
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
Generate documentation for the library
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
## `bins`
|
|
102
|
-
- **Type**: `boolean`
|
|
103
|
-
- **Default**: `{"default":true}`
|
|
104
|
-
|
|
105
|
-
> Bins
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
Generate documentation for the bins
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
## `examples`
|
|
112
|
-
- **Type**: `boolean`
|
|
113
|
-
- **Default**: `{"default":true}`
|
|
114
|
-
|
|
115
|
-
> Examples
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
Generate documentation for the examples
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
## `noDeps`
|
|
122
|
-
- **Type**: `boolean`
|
|
123
|
-
- **Default**: `{"default":false}`
|
|
124
|
-
|
|
125
|
-
> No Dependencies
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
Do not generate documentation for dependencies
|
|
129
|
-
|
|
130
|
-
|