pob 34.0.0 → 34.2.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,36 @@
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.2.0](https://github.com/christophehurpeau/pob/compare/pob@34.1.0...pob@34.2.0) (2026-05-01)
7
+
8
+ ### Features
9
+
10
+ * add types node
11
+ * bump eslint-config and eslint-config-typescript-react to version 65.3.0
12
+ * update eslint config
13
+ * update eslint to version 10.2.1 across all packages
14
+
15
+ Version bump for dependency: pob-dependencies
16
+ Version bump for dependency: @pob/root
17
+
18
+
19
+ ## [34.1.0](https://github.com/christophehurpeau/pob/compare/pob@34.0.0...pob@34.1.0) (2026-05-01)
20
+
21
+ ### Features
22
+
23
+ * update packageManager to yarn@4.14.1 in CoreYarnGenerator
24
+
25
+ ### Bug Fixes
26
+
27
+ * **deps:** update dependency mem-fs to v4.1.4 ([#2691](https://github.com/christophehurpeau/pob/issues/2691))
28
+ * **deps:** update dependency prettier to v3.8.3 ([#2732](https://github.com/christophehurpeau/pob/issues/2732))
29
+ * ignore *.tsbuildinfo instead of tsbuildinfo
30
+ * **tsconfig:** set noImplicitAny to false in tsconfig.check-js.json.ejs to support ts 6
31
+
32
+ Version bump for dependency: pob-dependencies
33
+ Version bump for dependency: @pob/root
34
+
35
+
6
36
  ## [34.0.0](https://github.com/christophehurpeau/pob/compare/pob@33.4.0...pob@34.0.0) (2026-04-05)
7
37
 
8
38
  ### ⚠ BREAKING CHANGES
@@ -124,6 +124,13 @@ export default class CommonTypescriptGenerator extends Generator {
124
124
  }
125
125
 
126
126
  const pkg = this.fs.readJSON(this.destinationPath("package.json"));
127
+ const envs = pkg.pob?.envs || [
128
+ {
129
+ target: "node",
130
+ version: `${maintenanceLTS}`,
131
+ },
132
+ ];
133
+ const withNode = envs.some((env) => env.target === "node");
127
134
 
128
135
  const presets = (() => {
129
136
  const babelEnvs =
@@ -144,12 +151,7 @@ export default class CommonTypescriptGenerator extends Generator {
144
151
  const nodeVersion = this.options.onlyLatestLTS
145
152
  ? `${latestLTS}`
146
153
  : `${maintenanceLTS}`;
147
- const envs = pkg.pob?.envs || [
148
- {
149
- target: "node",
150
- version: `${maintenanceLTS}`,
151
- },
152
- ];
154
+
153
155
  if (
154
156
  pkg.pob.rollup === false ||
155
157
  pkg.pob.bundler === false ||
@@ -327,6 +329,7 @@ export default class CommonTypescriptGenerator extends Generator {
327
329
  additionalIncludes: this.options.additionalIncludes
328
330
  .split(",")
329
331
  .filter(Boolean),
332
+ node: withNode,
330
333
  presets,
331
334
  },
332
335
  );
@@ -6,9 +6,13 @@
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,
13
+ <% } -%>
14
+ <% if (node) { -%>
15
+ "types": ["node"],
12
16
  <% } -%>
13
17
  "noEmit": true
14
18
  },
@@ -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.2.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -43,15 +43,15 @@
43
43
  },
44
44
  "prettier": "@pob/root/prettier-config",
45
45
  "dependencies": {
46
- "@pob/eslint-config": "65.2.0",
47
- "@pob/eslint-config-typescript-react": "65.2.0",
46
+ "@pob/eslint-config": "65.4.1",
47
+ "@pob/eslint-config-typescript-react": "65.4.1",
48
48
  "@pob/sort-object": "10.1.2",
49
49
  "@pob/sort-pkg": "12.1.2",
50
50
  "@prettier/sync": "0.6.1",
51
51
  "@types/inquirer": "9.0.9",
52
52
  "@yeoman/adapter": "3.1.0",
53
53
  "@yeoman/types": "1.8.0",
54
- "eslint": "10.0.3",
54
+ "eslint": "10.2.1",
55
55
  "findup-sync": "^5.0.0",
56
56
  "git-remote-url": "^1.0.1",
57
57
  "github-username": "^9.0.0",
@@ -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.2.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.2.0",
76
+ "@types/node": "24.12.2"
77
77
  }
78
78
  }