@storm-software/config-tools 1.51.0 β†’ 1.56.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,45 @@
1
+ ## 1.56.0 (2024-06-22)
2
+
3
+
4
+ ### πŸš€ Features
5
+
6
+ - **workspace-tools:** Update the publish executor to include separate CLI code ([79419a9a](https://github.com/storm-software/storm-ops/commit/79419a9a))
7
+
8
+ ## 1.55.0 (2024-06-22)
9
+
10
+
11
+ ### πŸš€ Features
12
+
13
+ - **workspace-tools:** Upgrade the workspace pnpm-lock file ([d33c20cb](https://github.com/storm-software/storm-ops/commit/d33c20cb))
14
+
15
+ ## 1.54.0 (2024-06-22)
16
+
17
+
18
+ ### πŸš€ Features
19
+
20
+ - **storm-ops:** Updated pnpm-lock file ([22be1efd](https://github.com/storm-software/storm-ops/commit/22be1efd))
21
+
22
+ ## 1.53.0 (2024-06-22)
23
+
24
+
25
+ ### πŸš€ Features
26
+
27
+ - **workspace-tools:** Added `lint` and `format` tasks and improved cache input management ([f2ade202](https://github.com/storm-software/storm-ops/commit/f2ade202))
28
+
29
+ ## 1.52.0 (2024-06-21)
30
+
31
+
32
+ ### πŸš€ Features
33
+
34
+ - **eslint-plugin:** Resolve issues with eslint module types ([ca513974](https://github.com/storm-software/storm-ops/commit/ca513974))
35
+
36
+ ## 1.51.1 (2024-06-05)
37
+
38
+
39
+ ### 🩹 Fixes
40
+
41
+ - **eslint:** Resolve issue with missing dependencies ([b0f43454](https://github.com/storm-software/storm-ops/commit/b0f43454))
42
+
1
43
  ## 1.51.0 (2024-06-03)
2
44
 
3
45
 
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.50.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
24
+ [![Version](https://img.shields.io/badge/version-1.54.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
25
25
  [![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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&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)
26
26
 
27
27
  > [!IMPORTANT]
@@ -37,9 +37,11 @@ This package is part of the <b>⚑Storm-Ops</b> monorepo. The Storm-Ops packages
37
37
 
38
38
  # Storm Configuration Tools
39
39
 
40
- A package containing various utilities to support custom workspace configurations
40
+ A package containing various utilities to support custom workspace
41
+ configurations
41
42
 
42
- Below is a list of the available configuration values that can be set through environment variables:
43
+ Below is a list of the available configuration values that can be set through
44
+ environment variables:
43
45
 
44
46
  | Name | Description | Default |
45
47
  | ----------------------- | -------------------------------------------------------------------------------------- | --------------------------- |
@@ -94,11 +96,15 @@ yarn add -D @storm-software/config-tools
94
96
 
95
97
  ## Reduced Package Size
96
98
 
97
- This project uses [tsup](https://tsup.egoist.dev/) to package the source code due to its ability to remove unused code and ship smaller javascript files thanks to code splitting. This helps to greatly reduce the size of the package and to make it easier to use in other projects.
99
+ This project uses [tsup](https://tsup.egoist.dev/) to package the source code
100
+ due to its ability to remove unused code and ship smaller javascript files
101
+ thanks to code splitting. This helps to greatly reduce the size of the package
102
+ and to make it easier to use in other projects.
98
103
 
99
104
  ## Development
100
105
 
101
- This project is built using [Nx](https://nx.dev). As a result, many of the usual commands are available to assist in development.
106
+ This project is built using [Nx](https://nx.dev). As a result, many of the usual
107
+ commands are available to assist in development.
102
108
 
103
109
  ### Building
104
110
 
@@ -106,7 +112,8 @@ Run `nx build config-tools` to build the library.
106
112
 
107
113
  ### Running unit tests
108
114
 
109
- Run `nx test config-tools` to execute the unit tests via [Jest](https://jestjs.io).
115
+ Run `nx test config-tools` to execute the unit tests via
116
+ [Jest](https://jestjs.io).
110
117
 
111
118
  ### Linting
112
119