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
@@ -6,6 +6,7 @@
6
6
  "compilerOptions": {
7
7
  "allowJs": true,
8
8
  "checkJs": true,
9
+ "noImplicitAny": false,
9
10
  "tsBuildInfoFile": "node_modules/.cache/tsc/tsbuildinfo",
10
11
  <% if (composite) { -%>
11
12
  "composite": true,
@@ -33,7 +33,7 @@ yarn-error.log*
33
33
  <% if (typescript && buildInGit) { -%>
34
34
 
35
35
  # Typescript
36
- tsbuildinfo
36
+ *.tsbuildinfo
37
37
  <% } -%>
38
38
 
39
39
  #*
@@ -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.12.0")
147
+ lt(pkg.packageManager.slice("yarn@".length), "4.14.1")
148
148
  ) {
149
- pkg.packageManager = "yarn@4.12.0";
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.0.0",
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.2",
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.0.0",
67
- "prettier": "3.8.1",
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.0.0",
76
- "@types/node": "24.12.0"
75
+ "@pob/root": "23.1.0",
76
+ "@types/node": "24.12.2"
77
77
  }
78
78
  }