@storm-software/workspace-tools 1.183.1 → 1.184.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +13 -1
  2. package/README.md +8 -51
  3. package/index.js +3375 -4219
  4. package/meta.json +1 -1
  5. package/package.json +2 -2
  6. package/src/base/base-executor.js +3689 -4533
  7. package/src/base/base-generator.js +3689 -4533
  8. package/src/base/index.js +3689 -4533
  9. package/src/executors/cargo-build/executor.js +3689 -4533
  10. package/src/executors/cargo-check/executor.js +3689 -4533
  11. package/src/executors/cargo-clippy/executor.js +3689 -4533
  12. package/src/executors/cargo-doc/executor.js +3689 -4533
  13. package/src/executors/cargo-format/executor.js +3689 -4533
  14. package/src/executors/clean-package/executor.js +3695 -4539
  15. package/src/executors/rolldown/executor.js +3689 -4533
  16. package/src/executors/rollup/executor.js +3360 -4204
  17. package/src/executors/size-limit/executor.js +3689 -4533
  18. package/src/executors/tsup/executor.js +3689 -4533
  19. package/src/executors/tsup-browser/executor.js +3689 -4533
  20. package/src/executors/tsup-neutral/executor.js +3689 -4533
  21. package/src/executors/tsup-node/executor.js +3689 -4533
  22. package/src/executors/typia/executor.js +3708 -4552
  23. package/src/executors/unbuild/executor.js +3689 -4533
  24. package/src/generators/browser-library/generator.js +3689 -4533
  25. package/src/generators/config-schema/generator.js +3689 -4533
  26. package/src/generators/neutral-library/generator.js +3689 -4533
  27. package/src/generators/node-library/generator.js +3689 -4533
  28. package/src/generators/preset/generator.js +3689 -4533
  29. package/src/generators/release-version/generator.js +3694 -4538
  30. package/src/utils/index.js +3712 -4556
package/CHANGELOG.md CHANGED
@@ -1,4 +1,16 @@
1
- ## 1.183.1 (2024-09-13)
1
+ ## 1.184.0 (2024-09-15)
2
+
3
+ ### Features
4
+
5
+ - **build-tools:** Update unbuild optional parameters
6
+ ([af395c22](https://github.com/storm-software/storm-ops/commit/af395c22))
7
+
8
+ ### Bug Fixes
9
+
10
+ - **eslint:** Make the ESLint rules more lenient
11
+ ([e11897e7](https://github.com/storm-software/storm-ops/commit/e11897e7))
12
+
13
+ ## 1.183.2 (2024-09-13)
2
14
 
3
15
  ### Bug Fixes
4
16
 
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
- [![Version](https://img.shields.io/badge/version-1.183.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.183.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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-16)
100
+ - [Options](#options-15)
104
101
  - [Workspace Preset](#workspace-preset)
105
102
  - [Examples](#examples)
106
- - [Options](#options-17)
103
+ - [Options](#options-16)
107
104
  - [Add Node Library](#add-node-library)
108
- - [Options](#options-18)
105
+ - [Options](#options-17)
109
106
  - [Configuration Schema Creator](#configuration-schema-creator)
110
- - [Options](#options-19)
107
+ - [Options](#options-18)
111
108
  - [Add Neutral Library](#add-neutral-library)
112
- - [Options](#options-20)
109
+ - [Options](#options-19)
113
110
  - [Add browser Library](#add-browser-library)
114
- - [Options](#options-21)
111
+ - [Options](#options-20)
115
112
  - [design-tokens](#design-tokens)
116
113
  - [Storm Release Version Generator](#storm-release-version-generator)
117
- - [Options](#options-22)
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