create-storm-workspace 1.62.0 โ 1.66.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 +35 -0
- package/README.md +5 -3
- package/index.js +418 -2048
- package/package.json +19 -19
- package/packages/config/src/define-config.d.ts +7 -6
- package/packages/config/src/schema.d.ts +13 -10
- package/packages/config-tools/src/config-file/get-config-file.d.ts +1 -1
- package/packages/workspace-tools/src/executors/npm-publish/executor.d.ts +4 -1
- package/packages/workspace-tools/src/generators/release-version/generator.d.ts +2 -2
- package/packages/workspace-tools/src/utils/cargo.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## 1.66.0 (2024-06-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ๐ Features
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Upgrade the workspace pnpm-lock file ([d33c20cb](https://github.com/storm-software/storm-ops/commit/d33c20cb))
|
|
7
|
+
|
|
8
|
+
## 1.65.0 (2024-06-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### ๐ Features
|
|
12
|
+
|
|
13
|
+
- **storm-ops:** Updated pnpm-lock file ([22be1efd](https://github.com/storm-software/storm-ops/commit/22be1efd))
|
|
14
|
+
|
|
15
|
+
## 1.64.0 (2024-06-22)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### ๐ Features
|
|
19
|
+
|
|
20
|
+
- **workspace-tools:** Added `lint` and `format` tasks and improved cache input management ([f2ade202](https://github.com/storm-software/storm-ops/commit/f2ade202))
|
|
21
|
+
|
|
22
|
+
## 1.63.0 (2024-06-21)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### ๐ Features
|
|
26
|
+
|
|
27
|
+
- **eslint-plugin:** Resolve issues with eslint module types ([ca513974](https://github.com/storm-software/storm-ops/commit/ca513974))
|
|
28
|
+
|
|
29
|
+
## 1.62.1 (2024-06-05)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### ๐ฉน Fixes
|
|
33
|
+
|
|
34
|
+
- **eslint:** Resolve issue with missing dependencies ([b0f43454](https://github.com/storm-software/storm-ops/commit/b0f43454))
|
|
35
|
+
|
|
1
36
|
## 1.62.0 (2024-06-03)
|
|
2
37
|
|
|
3
38
|
|
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/)
|
|
25
25
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
26
26
|
|
|
27
27
|
> [!IMPORTANT]
|
|
@@ -39,7 +39,8 @@ This package is part of the <b>โกStorm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
39
39
|
|
|
40
40
|
This package can be used to generate a Storm workspace.
|
|
41
41
|
|
|
42
|
-
It is essentially a wrapper around the [Nx CLI](https://nx.dev) that adds some
|
|
42
|
+
It is essentially a wrapper around the [Nx CLI](https://nx.dev) that adds some
|
|
43
|
+
additional functionality.
|
|
43
44
|
|
|
44
45
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
45
46
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
@@ -78,7 +79,8 @@ Run `nx build create-storm-workspace` to build the library.
|
|
|
78
79
|
|
|
79
80
|
## Running unit tests
|
|
80
81
|
|
|
81
|
-
Run `nx test create-storm-workspace` to execute the unit tests via
|
|
82
|
+
Run `nx test create-storm-workspace` to execute the unit tests via
|
|
83
|
+
[Jest](https://jestjs.io).
|
|
82
84
|
|
|
83
85
|
<!-- START footer -->
|
|
84
86
|
<!-- prettier-ignore-start -->
|