@storm-software/workspace-tools 1.166.0 → 1.167.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 +14 -0
- package/README.md +2 -1
- package/index.js +2 -0
- package/meta.json +1 -1
- package/package.json +2 -1
- package/src/base/base-executor.js +1 -0
- package/src/base/base-generator.js +1 -0
- package/src/base/index.js +1 -0
- package/src/executors/cargo-build/executor.js +2 -0
- package/src/executors/cargo-check/executor.js +2 -0
- package/src/executors/cargo-clippy/executor.js +2 -0
- package/src/executors/cargo-doc/executor.js +44 -7
- package/src/executors/cargo-doc/schema.d.ts +3 -1
- package/src/executors/cargo-doc/schema.json +5 -0
- package/src/executors/cargo-format/executor.js +2 -0
- package/src/executors/clean-package/executor.js +1 -0
- package/src/executors/rolldown/executor.js +1 -0
- package/src/executors/size-limit/executor.js +1 -0
- package/src/executors/tsup/executor.js +1 -0
- package/src/executors/tsup-browser/executor.js +1 -0
- package/src/executors/tsup-neutral/executor.js +1 -0
- package/src/executors/tsup-node/executor.js +1 -0
- package/src/executors/typia/executor.js +1 -0
- package/src/executors/unbuild/executor.js +1 -0
- package/src/generators/browser-library/generator.js +1 -0
- package/src/generators/config-schema/generator.js +1 -0
- package/src/generators/neutral-library/generator.js +1 -0
- package/src/generators/node-library/generator.js +1 -0
- package/src/generators/preset/generator.js +1 -0
- package/src/generators/release-version/generator.js +1 -0
- package/src/plugins/rust/index.js +10 -6
- package/src/utils/index.js +2 -0
- package/src/utils/toml.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.167.0 (2024-09-01)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Added the `noDeps` flag to the cargo-doc executor options
|
|
6
|
+
([82eeb944](https://github.com/storm-software/storm-ops/commit/82eeb944))
|
|
7
|
+
|
|
8
|
+
## 1.166.1 (2024-08-31)
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- **build-tools:** Added try/catch to utility function
|
|
13
|
+
([3ce4a7cd](https://github.com/storm-software/storm-ops/commit/3ce4a7cd))
|
|
14
|
+
|
|
1
15
|
## 1.166.0 (2024-08-31)
|
|
2
16
|
|
|
3
17
|
### Features
|
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 -->
|
|
@@ -683,6 +683,7 @@ The following executor options are available:
|
|
|
683
683
|
| profile | `string` | Build artifacts with the specified profile | |
|
|
684
684
|
| **outputPath \*** | `string` | The output path of the generated files. | "dist/docs/{projectRoot}" |
|
|
685
685
|
| toolchain | "stable" \| "beta" \| "nightly" | The Rust toolchain to use | "stable" |
|
|
686
|
+
| noDeps | `boolean` | Don't build documentation for dependencies | `true` |
|
|
686
687
|
| features | `string` | Features of workspace members may be enabled with package-name/feature-name syntax. Array of names is supported | |
|
|
687
688
|
| allFeatures | `boolean` | Build all binary targets | `true` |
|
|
688
689
|
| target | `string` | Build the specified target | |
|
package/index.js
CHANGED
|
@@ -67558,6 +67558,7 @@ var init_run = __esm({
|
|
|
67558
67558
|
CLICOLOR: "true",
|
|
67559
67559
|
FORCE_COLOR: "true"
|
|
67560
67560
|
},
|
|
67561
|
+
windowsHide: true,
|
|
67561
67562
|
stdio,
|
|
67562
67563
|
maxBuffer: LARGE_BUFFER,
|
|
67563
67564
|
killSignal: "SIGTERM"
|
|
@@ -619851,6 +619852,7 @@ function cargoMetadata() {
|
|
|
619851
619852
|
stdio: "pipe"
|
|
619852
619853
|
});
|
|
619853
619854
|
if (!output3.success) {
|
|
619855
|
+
console.error("Failed to get cargo metadata");
|
|
619854
619856
|
return null;
|
|
619855
619857
|
}
|
|
619856
619858
|
return JSON.parse(output3.output);
|