pob 34.0.0 → 34.1.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
|
@@ -3,6 +3,23 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [34.1.0](https://github.com/christophehurpeau/pob/compare/pob@34.0.0...pob@34.1.0) (2026-05-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* update packageManager to yarn@4.14.1 in CoreYarnGenerator
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **deps:** update dependency mem-fs to v4.1.4 ([#2691](https://github.com/christophehurpeau/pob/issues/2691))
|
|
15
|
+
* **deps:** update dependency prettier to v3.8.3 ([#2732](https://github.com/christophehurpeau/pob/issues/2732))
|
|
16
|
+
* ignore *.tsbuildinfo instead of tsbuildinfo
|
|
17
|
+
* **tsconfig:** set noImplicitAny to false in tsconfig.check-js.json.ejs to support ts 6
|
|
18
|
+
|
|
19
|
+
Version bump for dependency: pob-dependencies
|
|
20
|
+
Version bump for dependency: @pob/root
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [34.0.0](https://github.com/christophehurpeau/pob/compare/pob@33.4.0...pob@34.0.0) (2026-04-05)
|
|
7
24
|
|
|
8
25
|
### ⚠ BREAKING CHANGES
|
|
@@ -144,9 +144,9 @@ export default class CoreYarnGenerator extends Generator {
|
|
|
144
144
|
if (
|
|
145
145
|
!pkg.packageManager ||
|
|
146
146
|
!pkg.packageManager.startsWith("yarn@") ||
|
|
147
|
-
lt(pkg.packageManager.slice("yarn@".length), "4.
|
|
147
|
+
lt(pkg.packageManager.slice("yarn@".length), "4.14.1")
|
|
148
148
|
) {
|
|
149
|
-
pkg.packageManager = "yarn@4.
|
|
149
|
+
pkg.packageManager = "yarn@4.14.1";
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
// must be done after plugins installed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "34.
|
|
3
|
+
"version": "34.1.0",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
"json5": "^2.2.3",
|
|
60
60
|
"lodash.camelcase": "^4.3.0",
|
|
61
61
|
"lodash.kebabcase": "^4.1.1",
|
|
62
|
-
"mem-fs": "4.1.
|
|
62
|
+
"mem-fs": "4.1.4",
|
|
63
63
|
"mem-fs-editor": "11.1.4",
|
|
64
64
|
"minimist": "1.2.8",
|
|
65
65
|
"parse-author": "2.0.0",
|
|
66
|
-
"pob-dependencies": "23.
|
|
67
|
-
"prettier": "3.8.
|
|
66
|
+
"pob-dependencies": "23.1.0",
|
|
67
|
+
"prettier": "3.8.3",
|
|
68
68
|
"semver": "7.7.4",
|
|
69
69
|
"typescript": "5.9.3",
|
|
70
70
|
"validate-npm-package-name": "^7.0.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"yeoman-generator": "7.5.1"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@pob/root": "23.
|
|
76
|
-
"@types/node": "24.12.
|
|
75
|
+
"@pob/root": "23.1.0",
|
|
76
|
+
"@types/node": "24.12.2"
|
|
77
77
|
}
|
|
78
78
|
}
|