@storm-software/workspace-tools 1.79.0 β†’ 1.82.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 (31) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +1 -1
  3. package/config/nx.json +1 -1
  4. package/index.js +3852 -3740
  5. package/meta.json +1 -1
  6. package/package.json +6 -6
  7. package/packages/config/src/define-config.d.ts +6 -0
  8. package/packages/config/src/schema.d.ts +45 -0
  9. package/packages/workspace-tools/src/executors/cargo-publish/executor.d.ts +1 -1
  10. package/src/base/index.js +5004 -4848
  11. package/src/executors/cargo-publish/executor.js +21 -12
  12. package/src/executors/cargo-publish/schema.d.ts +1 -0
  13. package/src/executors/cargo-publish/schema.json +6 -1
  14. package/src/executors/npm-publish/executor.js +32 -19
  15. package/src/executors/npm-publish/schema.json +3 -4
  16. package/src/executors/rolldown/executor.js +3811 -3778
  17. package/src/executors/tsup/executor.js +3811 -3778
  18. package/src/executors/tsup-browser/executor.js +3811 -3778
  19. package/src/executors/tsup-neutral/executor.js +3811 -3778
  20. package/src/executors/tsup-node/executor.js +3811 -3778
  21. package/src/executors/typia/executor.js +3811 -3778
  22. package/src/executors/unbuild/executor.js +3811 -3778
  23. package/src/generators/browser-library/generator.js +5004 -4848
  24. package/src/generators/config-schema/generator.js +3753 -3720
  25. package/src/generators/neutral-library/generator.js +5004 -4848
  26. package/src/generators/node-library/generator.js +5004 -4848
  27. package/src/generators/preset/generator.js +3819 -3786
  28. package/src/generators/release-version/generator.js +3784 -3795
  29. package/src/plugins/rust/index.js +6 -2
  30. package/src/plugins/typescript/index.js +1 -3
  31. package/src/utils/index.js +3811 -3778
package/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ## 1.82.0 (2024-06-03)
2
+
3
+
4
+ ### πŸš€ Features
5
+
6
+ - **config:** Added the `registry` configuration node ([708668a4](https://github.com/storm-software/storm-ops/commit/708668a4))
7
+
8
+ ## 1.81.0 (2024-06-03)
9
+
10
+
11
+ ### πŸš€ Features
12
+
13
+ - **storm-ops:** Upgrade Nx packages and resolve linting issues ([685c2bb9](https://github.com/storm-software/storm-ops/commit/685c2bb9))
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **deps:** update dependencies-non-major ([#181](https://github.com/storm-software/storm-ops/pull/181))
19
+
20
+ - **deps:** update dependency bundle-require to v5 ([#182](https://github.com/storm-software/storm-ops/pull/182))
21
+
22
+ ## 1.80.0 (2024-06-02)
23
+
24
+
25
+ ### πŸš€ Features
26
+
27
+ - **config-tools:** Enhance the validations for the `cloudflareAccountId` configuration ([9fbc1954](https://github.com/storm-software/storm-ops/commit/9fbc1954))
28
+
1
29
  ## 1.79.0 (2024-05-29)
2
30
 
3
31
 
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.78.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
24
+ [![Version](https://img.shields.io/badge/version-1.80.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
25
25
  [![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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&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)
26
26
 
27
27
  > [!IMPORTANT]
package/config/nx.json CHANGED
@@ -225,7 +225,7 @@
225
225
  "release": {
226
226
  "projects": ["packages/*", "crates/*"],
227
227
  "projectsRelationship": "independent",
228
- "releaseTagPattern": "{projectName}-v{version}",
228
+ "releaseTagPattern": "{projectName}@{version}",
229
229
  "changelog": {
230
230
  "automaticFromRef": true,
231
231
  "workspaceChangelog": false,