pob 26.3.0 → 26.5.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,30 @@
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
+ ## [26.5.0](https://github.com/christophehurpeau/pob/compare/pob@26.4.0...pob@26.5.0) (2025-02-06)
7
+
8
+ ### Features
9
+
10
+ * **deps:** update @pob/eslint-config to v59.6.0 ([#2442](https://github.com/christophehurpeau/pob/issues/2442)) ([22ae88f](https://github.com/christophehurpeau/pob/commit/22ae88f941ced7bb7329169a2ca28ef39d1eced3))
11
+ * improve bun support ([6869f9e](https://github.com/christophehurpeau/pob/commit/6869f9e171a8217c5b4f14767eef41877565664b))
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** update @pob/eslint-config to v59.5.1 ([#2433](https://github.com/christophehurpeau/pob/issues/2433)) ([60da520](https://github.com/christophehurpeau/pob/commit/60da520fffed22ee33e55b6c5467cced729141d5))
16
+ * **deps:** update dependency semver to v7.7.1 ([#2435](https://github.com/christophehurpeau/pob/issues/2435)) ([935072a](https://github.com/christophehurpeau/pob/commit/935072a0a3e2ffe0dec0f9b0b9ef3d8118c8b81c))
17
+
18
+ Version bump for dependency: @pob/root
19
+
20
+
21
+ ## [26.4.0](https://github.com/christophehurpeau/pob/compare/pob@26.3.0...pob@26.4.0) (2025-02-02)
22
+
23
+ ### Features
24
+
25
+ * **deps:** update @pob/eslint-config to v59.5.0 ([#2431](https://github.com/christophehurpeau/pob/issues/2431)) ([98cab38](https://github.com/christophehurpeau/pob/commit/98cab38d7b284e94b74ac87049cf0f06c7031982))
26
+
27
+ Version bump for dependency: @pob/root
28
+
29
+
6
30
  ## [26.3.0](https://github.com/christophehurpeau/pob/compare/pob@26.2.0...pob@26.3.0) (2025-02-02)
7
31
 
8
32
  ### Features
@@ -39,7 +39,7 @@ export default class CoreNpmGenerator extends Generator {
39
39
  }
40
40
 
41
41
  if (!pkg.private && this.options.enable) {
42
- if (pkg.files.length === 1 && pkg.files[0] === "lib/index.js") {
42
+ if (pkg.files?.length === 1 && pkg.files[0] === "lib/index.js") {
43
43
  // see rollup-plugin-svgr
44
44
  } else {
45
45
  const files = new Set([
@@ -102,7 +102,7 @@ export default class PobBaseGenerator extends Generator {
102
102
  name: "packageManager",
103
103
  message: "Witch package manager do you want to use ?",
104
104
  type: "list",
105
- choices: ["yarn", "npm"],
105
+ choices: ["yarn", "npm", "bun"],
106
106
  default: config.packageManager || "yarn",
107
107
  },
108
108
  {
package/lib/pob.js CHANGED
@@ -301,6 +301,10 @@ if (action === "migrate-to-monorepo") {
301
301
  ".husky",
302
302
  ".yarn",
303
303
  ".yarnrc.yml",
304
+ "eslint.config.js",
305
+ "bun.lock",
306
+ ".prettierignore",
307
+ "renovate.json",
304
308
  "packages",
305
309
  "lint-staged.config.js",
306
310
  "yarn.lock",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "26.3.0",
3
+ "version": "26.5.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -41,9 +41,9 @@
41
41
  },
42
42
  "prettier": "@pob/root/prettier-config",
43
43
  "dependencies": {
44
- "@pob/eslint-config": "59.4.0",
45
- "@pob/eslint-config-typescript": "59.4.0",
46
- "@pob/eslint-config-typescript-react": "59.4.0",
44
+ "@pob/eslint-config": "59.6.0",
45
+ "@pob/eslint-config-typescript": "59.6.0",
46
+ "@pob/eslint-config-typescript-react": "59.6.0",
47
47
  "@pob/sort-eslint-config": "8.0.0",
48
48
  "@pob/sort-object": "9.0.0",
49
49
  "@pob/sort-pkg": "11.0.0",
@@ -65,9 +65,9 @@
65
65
  "mem-fs-editor": "11.1.4",
66
66
  "minimist": "1.2.8",
67
67
  "parse-author": "2.0.0",
68
- "pob-dependencies": "17.2.0",
68
+ "pob-dependencies": "17.4.0",
69
69
  "prettier": "3.4.2",
70
- "semver": "7.7.0",
70
+ "semver": "7.7.1",
71
71
  "typescript": "5.7.3",
72
72
  "validate-npm-package-name": "^6.0.0",
73
73
  "yarn-workspace-utils": "8.1.0",
@@ -75,7 +75,7 @@
75
75
  "yeoman-generator": "7.4.0"
76
76
  },
77
77
  "devDependencies": {
78
- "@pob/root": "16.2.0",
79
- "@types/node": "22.13.0"
78
+ "@pob/root": "16.3.1",
79
+ "@types/node": "22.13.1"
80
80
  }
81
81
  }