@storm-software/workspace-tools 1.159.1 → 1.161.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 CHANGED
@@ -1,3 +1,33 @@
1
+ ## 1.161.0 (2024-08-27)
2
+
3
+ ### Features
4
+
5
+ - **workspace-tools:** Update the `defaultConfiguration` to `production` for
6
+ release
7
+ ([62258f36](https://github.com/storm-software/storm-ops/commit/62258f36))
8
+
9
+ ## 1.160.0 (2024-08-27)
10
+
11
+ ### Features
12
+
13
+ - **workspace-tools:** Added Cargo executors for build, check, doc, clippy, and
14
+ format
15
+ ([52ffcec8](https://github.com/storm-software/storm-ops/commit/52ffcec8))
16
+
17
+ - **workspace-tools:** Added the `profiles` option to Cargo plugin
18
+ ([518620ad](https://github.com/storm-software/storm-ops/commit/518620ad))
19
+
20
+ ### Bug Fixes
21
+
22
+ - **workspace-tools:** Ensure `dev` is used as default profile
23
+ ([f9a49bc5](https://github.com/storm-software/storm-ops/commit/f9a49bc5))
24
+
25
+ - **workspace-tools:** Added the required json properties to executor schema
26
+ ([c99d89f8](https://github.com/storm-software/storm-ops/commit/c99d89f8))
27
+
28
+ - **workspace-tools:** Update the Cargo executors body function signature
29
+ ([e40fd886](https://github.com/storm-software/storm-ops/commit/e40fd886))
30
+
1
31
  ## 1.159.1 (2024-08-26)
2
32
 
3
33
  ### Bug Fixes
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.159.1-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.160.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)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -534,7 +534,7 @@ The following executor options are available:
534
534
  | **toolchain \*** | "stable" \| "beta" \| "nightly" | The Rust toolchain to use | "stable" |
535
535
  | features | `string` | Features of workspace members may be enabled with package-name/feature-name syntax. Array of names is supported | |
536
536
  | allFeatures | `boolean` | Build all binary targets | |
537
- | target | `string` | | |
537
+ | target | `string` | Build the specified target | |
538
538
  | lib | `boolean` | Build the package's library | |
539
539
  | bin | `string` | Build the specified binary. Array of names or common Unix glob patterns is supported | |
540
540
  | bins | `boolean` | Build all binary targets | |