pob 27.1.0 → 28.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,44 @@
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
+ ## [28.1.0](https://github.com/christophehurpeau/pob/compare/pob@28.0.0...pob@28.1.0) (2025-04-27)
7
+
8
+ ### Features
9
+
10
+ * **deps:** update dependency @yeoman/types to v1.6.0 ([#2506](https://github.com/christophehurpeau/pob/issues/2506)) ([cb74360](https://github.com/christophehurpeau/pob/commit/cb743603418a9854930b7d0a57ff36655f2e3b6d))
11
+ * **deps:** update yarn monorepo ([#2508](https://github.com/christophehurpeau/pob/issues/2508)) ([c2b37b6](https://github.com/christophehurpeau/pob/commit/c2b37b6b5422fa39c224043cb863217bc83a1c05))
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** update dependency yeoman-generator to v7.5.1 ([#2502](https://github.com/christophehurpeau/pob/issues/2502)) ([a09c1a0](https://github.com/christophehurpeau/pob/commit/a09c1a0b53258a720789f8d3774fc4c0a10ba32b))
16
+
17
+ Version bump for dependency: yarn-workspace-utils
18
+ Version bump for dependency: @pob/root
19
+
20
+
21
+ ## [28.0.0](https://github.com/christophehurpeau/pob/compare/pob@27.1.0...pob@28.0.0) (2025-04-27)
22
+
23
+ ### ⚠ BREAKING CHANGES
24
+
25
+ * **deps:** update @pob/eslint-config to v60 (major) (#2501)
26
+
27
+ ### Features
28
+
29
+ * **deps:** update @pob/eslint-config to v60 (major) ([#2501](https://github.com/christophehurpeau/pob/issues/2501)) ([853ba41](https://github.com/christophehurpeau/pob/commit/853ba41a2d29036f45acba272f30ffb34ec99dd2))
30
+ * **deps:** update dependency eslint to v9.25.1 ([#2500](https://github.com/christophehurpeau/pob/issues/2500)) ([8b4a0e2](https://github.com/christophehurpeau/pob/commit/8b4a0e25684355b89ade0186b2ad8fbea8726bc1))
31
+
32
+ ### Bug Fixes
33
+
34
+ * **deps:** update dependency typescript to v5.8.3 ([#2497](https://github.com/christophehurpeau/pob/issues/2497)) ([3c7473b](https://github.com/christophehurpeau/pob/commit/3c7473bfce5df93a8686d9aaf290e5bc52d77032))
35
+ * **pob:** only use tsconfig.test.json if tsTestUtil is ts-node ([ce24468](https://github.com/christophehurpeau/pob/commit/ce244681d8f4fe84da81aa48e07cc603d807b0c5))
36
+ * **pob:** use @pob/rollup-esbuild in monorepo to avoid having wrong rollup version ([340edc0](https://github.com/christophehurpeau/pob/commit/340edc0ead936b731c719d7c23010ec63da0b732))
37
+
38
+ Version bump for dependency: @pob/sort-object
39
+ Version bump for dependency: @pob/sort-pkg
40
+ Version bump for dependency: yarn-workspace-utils
41
+ Version bump for dependency: @pob/root
42
+
43
+
6
44
  ## [27.1.0](https://github.com/christophehurpeau/pob/compare/pob@27.0.0...pob@27.1.0) (2025-04-27)
7
45
 
8
46
  ### Features
package/README.md CHANGED
@@ -1,16 +1,16 @@
1
- <h3 align="center">
1
+ <h1 align="center">
2
2
  pob
3
- </h3>
3
+ </h1>
4
4
 
5
5
  <p align="center">
6
6
  Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest
7
7
  </p>
8
8
 
9
9
  <p align="center">
10
- <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/npm/v/pob.svg?style=flat-square"></a>
11
- <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/npm/dw/pob.svg?style=flat-square"></a>
12
- <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/node/v/pob.svg?style=flat-square"></a>
13
- <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/npm/types/pob.svg?style=flat-square"></a>
10
+ <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/npm/v/pob.svg?style=flat-square" alt="npm version"></a>
11
+ <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/npm/dw/pob.svg?style=flat-square" alt="npm downloads"></a>
12
+ <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/node/v/pob.svg?style=flat-square" alt="node version"></a>
13
+ <a href="https://npmjs.org/package/pob"><img src="https://img.shields.io/npm/types/pob.svg?style=flat-square" alt="types"></a>
14
14
  </p>
15
15
 
16
16
  ## How to install
@@ -491,7 +491,7 @@ export default class CommonTestingGenerator extends Generator {
491
491
  }
492
492
  } else {
493
493
  const tsconfigTestPath = this.destinationPath("tsconfig.test.json");
494
- if (testRunner === "node" && withTypescript) {
494
+ if (tsTestUtil === "ts-node" && withTypescript) {
495
495
  const nodeVersion = this.options.onlyLatestLTS
496
496
  ? `${latestLTS}`
497
497
  : `${maintenanceLTS}`;
@@ -386,6 +386,13 @@ export default class PobMonorepoGenerator extends Generator {
386
386
  (rollupKinds.size === 0 || rollupKinds.has("babel")),
387
387
  ["@babel/core", "pob-babel"],
388
388
  );
389
+
390
+ packageUtils.addOrRemoveDevDependencies(pkg, rollupKinds.has("esbuild"), [
391
+ "@pob/rollup-esbuild",
392
+ ]);
393
+ if (rollupKinds.has("esbuild")) {
394
+ packageUtils.removeDevDependencies(pkg, ["rollup"]);
395
+ }
389
396
  this.fs.writeJSON(this.destinationPath("package.json"), pkg);
390
397
  }
391
398
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "27.1.0",
3
+ "version": "28.1.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -32,6 +32,8 @@
32
32
  "bin"
33
33
  ],
34
34
  "scripts": {
35
+ "build": "yarn run build:definitions",
36
+ "build:definitions": "tsc -p tsconfig.json",
35
37
  "format": "prettier --write",
36
38
  "lint": "yarn run lint:eslint",
37
39
  "lint:eslint": "yarn ../.. run eslint --quiet packages/pob"
@@ -41,18 +43,18 @@
41
43
  },
42
44
  "prettier": "@pob/root/prettier-config",
43
45
  "dependencies": {
44
- "@pob/eslint-config": "59.8.1",
45
- "@pob/eslint-config-typescript": "59.8.1",
46
- "@pob/eslint-config-typescript-react": "59.8.1",
47
- "@pob/sort-object": "9.0.1",
48
- "@pob/sort-pkg": "11.0.2",
46
+ "@pob/eslint-config": "60.0.0",
47
+ "@pob/eslint-config-typescript": "60.0.0",
48
+ "@pob/eslint-config-typescript-react": "60.0.0",
49
+ "@pob/sort-object": "9.0.2",
50
+ "@pob/sort-pkg": "11.0.3",
49
51
  "@prettier/sync": "0.5.5",
50
52
  "@types/inquirer": "9.0.7",
51
- "@yarnpkg/cli": "4.7.0",
52
- "@yarnpkg/core": "4.2.1",
53
+ "@yarnpkg/cli": "4.9.1",
54
+ "@yarnpkg/core": "4.4.1",
53
55
  "@yarnpkg/fslib": "3.1.2",
54
- "@yeoman/types": "1.5.0",
55
- "eslint": "9.22.0",
56
+ "@yeoman/types": "1.6.0",
57
+ "eslint": "9.25.1",
56
58
  "findup-sync": "^5.0.0",
57
59
  "git-remote-url": "^1.0.1",
58
60
  "github-username": "^9.0.0",
@@ -64,17 +66,17 @@
64
66
  "mem-fs-editor": "11.1.4",
65
67
  "minimist": "1.2.8",
66
68
  "parse-author": "2.0.0",
67
- "pob-dependencies": "18.1.0",
69
+ "pob-dependencies": "19.0.0",
68
70
  "prettier": "3.5.3",
69
71
  "semver": "7.7.1",
70
- "typescript": "5.8.2",
72
+ "typescript": "5.8.3",
71
73
  "validate-npm-package-name": "^6.0.0",
72
- "yarn-workspace-utils": "8.5.1",
74
+ "yarn-workspace-utils": "8.7.0",
73
75
  "yeoman-environment": "4.4.3",
74
- "yeoman-generator": "7.5.0"
76
+ "yeoman-generator": "7.5.1"
75
77
  },
76
78
  "devDependencies": {
77
- "@pob/root": "17.1.0",
79
+ "@pob/root": "18.0.1",
78
80
  "@types/node": "22.15.2"
79
81
  }
80
82
  }