@storm-software/workspace-tools 1.183.0 → 1.183.2
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 +7 -0
- package/README.md +8 -51
- package/index.js +3375 -4219
- package/meta.json +1 -1
- package/package.json +2 -2
- package/src/base/base-executor.js +3689 -4533
- package/src/base/base-generator.js +3689 -4533
- package/src/base/index.js +3689 -4533
- package/src/executors/cargo-build/executor.js +3689 -4533
- package/src/executors/cargo-check/executor.js +3689 -4533
- package/src/executors/cargo-clippy/executor.js +3689 -4533
- package/src/executors/cargo-doc/executor.js +3689 -4533
- package/src/executors/cargo-format/executor.js +3689 -4533
- package/src/executors/clean-package/executor.js +3695 -4539
- package/src/executors/rolldown/executor.js +3689 -4533
- package/src/executors/rollup/executor.js +3360 -4204
- package/src/executors/size-limit/executor.js +3689 -4533
- package/src/executors/tsup/executor.js +3689 -4533
- package/src/executors/tsup-browser/executor.js +3689 -4533
- package/src/executors/tsup-neutral/executor.js +3689 -4533
- package/src/executors/tsup-node/executor.js +3689 -4533
- package/src/executors/typia/executor.js +3708 -4552
- package/src/executors/unbuild/executor.js +3689 -4533
- package/src/generators/browser-library/generator.js +3689 -4533
- package/src/generators/config-schema/generator.js +3689 -4533
- package/src/generators/neutral-library/generator.js +3689 -4533
- package/src/generators/node-library/generator.js +3689 -4533
- package/src/generators/preset/generator.js +3689 -4533
- package/src/generators/release-version/generator.js +3694 -4538
- package/src/utils/index.js +3712 -4556
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -95,26 +95,23 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
95
95
|
- [Rollup Builder](#rollup-builder)
|
|
96
96
|
- [Example](#example-16)
|
|
97
97
|
- [Options](#options-14)
|
|
98
|
-
- [RSLib Builder](#rslib-builder)
|
|
99
|
-
- [Example](#example-17)
|
|
100
|
-
- [Options](#options-15)
|
|
101
98
|
- [Generators](#generators)
|
|
102
99
|
- [Init Storm Workspace Plugin](#init-storm-workspace-plugin)
|
|
103
|
-
- [Options](#options-
|
|
100
|
+
- [Options](#options-15)
|
|
104
101
|
- [Workspace Preset](#workspace-preset)
|
|
105
102
|
- [Examples](#examples)
|
|
106
|
-
- [Options](#options-
|
|
103
|
+
- [Options](#options-16)
|
|
107
104
|
- [Add Node Library](#add-node-library)
|
|
108
|
-
- [Options](#options-
|
|
105
|
+
- [Options](#options-17)
|
|
109
106
|
- [Configuration Schema Creator](#configuration-schema-creator)
|
|
110
|
-
- [Options](#options-
|
|
107
|
+
- [Options](#options-18)
|
|
111
108
|
- [Add Neutral Library](#add-neutral-library)
|
|
112
|
-
- [Options](#options-
|
|
109
|
+
- [Options](#options-19)
|
|
113
110
|
- [Add browser Library](#add-browser-library)
|
|
114
|
-
- [Options](#options-
|
|
111
|
+
- [Options](#options-20)
|
|
115
112
|
- [design-tokens](#design-tokens)
|
|
116
113
|
- [Storm Release Version Generator](#storm-release-version-generator)
|
|
117
|
-
- [Options](#options-
|
|
114
|
+
- [Options](#options-21)
|
|
118
115
|
- [Building](#building)
|
|
119
116
|
- [Running unit tests](#running-unit-tests)
|
|
120
117
|
- [Storm Workspaces](#storm-workspaces)
|
|
@@ -757,46 +754,6 @@ The following executor options are available:
|
|
|
757
754
|
|
|
758
755
|
|
|
759
756
|
|
|
760
|
-
## RSLib Builder
|
|
761
|
-
|
|
762
|
-
An executor used by Storm Software to run the RSLib build process
|
|
763
|
-
|
|
764
|
-
### Example
|
|
765
|
-
|
|
766
|
-
This executor can be used by executing the following in a command line utility:
|
|
767
|
-
|
|
768
|
-
```cmd
|
|
769
|
-
nx run my-project:rslib
|
|
770
|
-
```
|
|
771
|
-
|
|
772
|
-
**Please note:** _The rslib executor should be included in the desired projects's `project.json` file.All required options must be included in the `options` property of the json._
|
|
773
|
-
|
|
774
|
-
### Options
|
|
775
|
-
|
|
776
|
-
The following executor options are available:
|
|
777
|
-
|
|
778
|
-
| Option | Type | Description | Default |
|
|
779
|
-
| --------- | ------ | ------------- | --------- |
|
|
780
|
-
| entry | `string` | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
|
|
781
|
-
| outputPath | `string` | The output path of the generated files. | "dist/{projectRoot}" |
|
|
782
|
-
| **tsConfig \*** | `string` | The path to the \`tsconfig.json\` file. | "{projectRoot}/tsconfig.json" |
|
|
783
|
-
| additionalEntryPoints | `string[]` | List of additional entry points. | `[]` |
|
|
784
|
-
| assets | `array` | List of static assets. | `[]` |
|
|
785
|
-
| clean | `boolean` | Remove previous output before build. | `true` |
|
|
786
|
-
| includeSrc | `boolean` | Should the source files be added to the distribution folder in an \`src\` directory. | |
|
|
787
|
-
| generatePackageJson | `boolean` | Should a package.json file be generated in the output folder or should the existing one be copied in. | `true` |
|
|
788
|
-
| debug | `boolean` | Should output be unminified with source mappings. | |
|
|
789
|
-
| **platform \*** | "browser" \| "neutral" \| "node" \| "worker" | Platform target for outputs. | "neutral" |
|
|
790
|
-
| **banner \*** | `string` | A short heading added to the top of each typescript file added in the output folder's \`src\` directory. | "This code was developed by Storm Software (<https://stormsoftware.com>) and is licensed under the Apache License 2.0." |
|
|
791
|
-
| minify | `boolean` | Should the build process minify the output files? | |
|
|
792
|
-
| verbose | `boolean` | Should write extra log outputs with details from the executor. | |
|
|
793
|
-
| plugins | `object[]` | List of Rollup plugins to use during processing | `[]` |
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
**Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
757
|
<!-- markdownlint-restore -->
|
|
801
758
|
<!-- prettier-ignore-end -->
|
|
802
759
|
|