@storm-software/workspace-tools 1.166.0 → 1.166.1

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 (33) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +1 -1
  3. package/index.js +2 -0
  4. package/meta.json +1 -1
  5. package/package.json +2 -1
  6. package/src/base/base-executor.js +1 -0
  7. package/src/base/base-generator.js +1 -0
  8. package/src/base/index.js +1 -0
  9. package/src/executors/cargo-build/executor.js +2 -0
  10. package/src/executors/cargo-check/executor.js +2 -0
  11. package/src/executors/cargo-clippy/executor.js +2 -0
  12. package/src/executors/cargo-doc/executor.js +44 -7
  13. package/src/executors/cargo-doc/schema.d.ts +3 -1
  14. package/src/executors/cargo-doc/schema.json +5 -0
  15. package/src/executors/cargo-format/executor.js +2 -0
  16. package/src/executors/clean-package/executor.js +1 -0
  17. package/src/executors/rolldown/executor.js +1 -0
  18. package/src/executors/size-limit/executor.js +1 -0
  19. package/src/executors/tsup/executor.js +1 -0
  20. package/src/executors/tsup-browser/executor.js +1 -0
  21. package/src/executors/tsup-neutral/executor.js +1 -0
  22. package/src/executors/tsup-node/executor.js +1 -0
  23. package/src/executors/typia/executor.js +1 -0
  24. package/src/executors/unbuild/executor.js +1 -0
  25. package/src/generators/browser-library/generator.js +1 -0
  26. package/src/generators/config-schema/generator.js +1 -0
  27. package/src/generators/neutral-library/generator.js +1 -0
  28. package/src/generators/node-library/generator.js +1 -0
  29. package/src/generators/preset/generator.js +1 -0
  30. package/src/generators/release-version/generator.js +1 -0
  31. package/src/plugins/rust/index.js +12 -6
  32. package/src/utils/index.js +2 -0
  33. package/src/utils/toml.d.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## 1.166.1 (2024-08-31)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **build-tools:** Added try/catch to utility function
6
+ ([3ce4a7cd](https://github.com/storm-software/storm-ops/commit/3ce4a7cd))
7
+
1
8
  ## 1.166.0 (2024-08-31)
2
9
 
3
10
  ### 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
- [![Version](https://img.shields.io/badge/version-1.165.3-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.166.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 -->
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);