@storm-software/config-tools 1.80.0 → 1.81.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,9 +1,24 @@
1
- ## 1.80.0 (2024-08-31)
1
+ ## 1.81.0 (2024-09-01)
2
+
3
+
4
+ ### Features
5
+
6
+ - **workspace-tools:** Added the `noDeps` flag to the cargo-doc executor options ([82eeb944](https://github.com/storm-software/storm-ops/commit/82eeb944))
2
7
 
8
+ ## 1.80.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
+
15
+ ## 1.80.0 (2024-08-31)
3
16
 
4
17
  ### Features
5
18
 
6
- - **eslint:** Update linting rules to ignore the length of commands and use double quotes ([f9c603d7](https://github.com/storm-software/storm-ops/commit/f9c603d7))
19
+ - **eslint:** Update linting rules to ignore the length of commands and use
20
+ double quotes
21
+ ([f9c603d7](https://github.com/storm-software/storm-ops/commit/f9c603d7))
7
22
 
8
23
  ## 1.79.3 (2024-08-31)
9
24
 
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.79.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.80.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)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/index.cjs CHANGED
@@ -67475,6 +67475,7 @@ var run = (config, command, cwd2 = config.workspaceRoot ?? process.cwd(), stdio
67475
67475
  CLICOLOR: "true",
67476
67476
  FORCE_COLOR: "true"
67477
67477
  },
67478
+ windowsHide: true,
67478
67479
  stdio,
67479
67480
  maxBuffer: LARGE_BUFFER,
67480
67481
  killSignal: "SIGTERM"
package/index.js CHANGED
@@ -67432,6 +67432,7 @@ var run = (config, command, cwd2 = config.workspaceRoot ?? process.cwd(), stdio
67432
67432
  CLICOLOR: "true",
67433
67433
  FORCE_COLOR: "true"
67434
67434
  },
67435
+ windowsHide: true,
67435
67436
  stdio,
67436
67437
  maxBuffer: LARGE_BUFFER,
67437
67438
  killSignal: "SIGTERM"