@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 +30 -0
- package/README.md +2 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/plugins/rust/index.js +2 -2
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
|
-
[](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 -->
|
|
@@ -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 | |
|