create-storm-workspace 1.16.16 → 1.16.17
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 +7 -0
- package/README.md +28 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.16.16](https://github.com/storm-software/storm-ops/compare/create-storm-workspace-v1.16.15...create-storm-workspace-v1.16.16) (2023-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Update the path separators in api-extractor parameters ([59a0908](https://github.com/storm-software/storm-ops/commit/59a09086e48af2f8aff9297878c3cd436eaf7837))
|
|
7
|
+
|
|
1
8
|
## [1.16.15](https://github.com/storm-software/storm-ops/compare/create-storm-workspace-v1.16.14...create-storm-workspace-v1.16.15) (2023-11-29)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -38,13 +38,39 @@ It is essentially a wrapper around the [Nx CLI](https://nx.dev) that adds some a
|
|
|
38
38
|
|
|
39
39
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
40
40
|
|
|
41
|
+
## Installing
|
|
42
|
+
|
|
43
|
+
Using [pnpm](http://pnpm.io):
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
pnpm add -g create-storm-workspace
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
<details>
|
|
50
|
+
<summary>Using npm</summary>
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npm install -g create-storm-workspace
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
</details>
|
|
57
|
+
|
|
58
|
+
<details>
|
|
59
|
+
<summary>Using yarn</summary>
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
yarn add -g create-storm-workspace
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
</details>
|
|
66
|
+
|
|
41
67
|
## Building
|
|
42
68
|
|
|
43
|
-
Run `nx build
|
|
69
|
+
Run `nx build create-storm-workspace` to build the library.
|
|
44
70
|
|
|
45
71
|
## Running unit tests
|
|
46
72
|
|
|
47
|
-
Run `nx test
|
|
73
|
+
Run `nx test create-storm-workspace` to execute the unit tests via [Jest](https://jestjs.io).
|
|
48
74
|
|
|
49
75
|
<!-- START footer -->
|
|
50
76
|
<!-- prettier-ignore-start -->
|