@storm-software/workspace-tools 1.183.2 → 1.184.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.
- package/CHANGELOG.md +19 -0
- package/index.js +2 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/generators/preset/generator.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## 1.184.1 (2024-09-15)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **storm-ops:** Resolve issue with pnpm version mismatches
|
|
6
|
+
([11ef01b3](https://github.com/storm-software/storm-ops/commit/11ef01b3))
|
|
7
|
+
|
|
8
|
+
## 1.184.0 (2024-09-15)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **build-tools:** Update unbuild optional parameters
|
|
13
|
+
([af395c22](https://github.com/storm-software/storm-ops/commit/af395c22))
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- **eslint:** Make the ESLint rules more lenient
|
|
18
|
+
([e11897e7](https://github.com/storm-software/storm-ops/commit/e11897e7))
|
|
19
|
+
|
|
1
20
|
## 1.183.2 (2024-09-13)
|
|
2
21
|
|
|
3
22
|
### Bug Fixes
|
package/index.js
CHANGED
|
@@ -232199,10 +232199,10 @@ async function presetGeneratorFn(tree, options) {
|
|
|
232199
232199
|
type: "github",
|
|
232200
232200
|
url: `${options.repositoryUrl}.git`
|
|
232201
232201
|
};
|
|
232202
|
-
json2.packageManager ??= "pnpm@9.
|
|
232202
|
+
json2.packageManager ??= "pnpm@9.10.0";
|
|
232203
232203
|
json2.engines ??= {
|
|
232204
232204
|
"node": ">=20.11.0",
|
|
232205
|
-
"pnpm": ">=9.
|
|
232205
|
+
"pnpm": ">=9.10.0"
|
|
232206
232206
|
};
|
|
232207
232207
|
json2.devEngines ??= {
|
|
232208
232208
|
"node": "20.x || 21.x"
|