pob 34.1.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,19 @@
|
|
|
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
|
+
|
|
6
19
|
## [34.1.0](https://github.com/christophehurpeau/pob/compare/pob@34.0.0...pob@34.1.0) (2026-05-01)
|
|
7
20
|
|
|
8
21
|
### Features
|
|
@@ -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
|
-
|
|
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
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "34.
|
|
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.
|
|
47
|
-
"@pob/eslint-config-typescript-react": "65.
|
|
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.
|
|
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",
|
|
@@ -63,7 +63,7 @@
|
|
|
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.
|
|
66
|
+
"pob-dependencies": "23.2.0",
|
|
67
67
|
"prettier": "3.8.3",
|
|
68
68
|
"semver": "7.7.4",
|
|
69
69
|
"typescript": "5.9.3",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"yeoman-generator": "7.5.1"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@pob/root": "23.
|
|
75
|
+
"@pob/root": "23.2.0",
|
|
76
76
|
"@types/node": "24.12.2"
|
|
77
77
|
}
|
|
78
78
|
}
|