pob 26.4.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,21 @@
|
|
|
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
|
+
|
|
6
21
|
## [26.4.0](https://github.com/christophehurpeau/pob/compare/pob@26.3.0...pob@26.4.0) (2025-02-02)
|
|
7
22
|
|
|
8
23
|
### 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
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "26.
|
|
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.
|
|
45
|
-
"@pob/eslint-config-typescript": "59.
|
|
46
|
-
"@pob/eslint-config-typescript-react": "59.
|
|
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.
|
|
68
|
+
"pob-dependencies": "17.4.0",
|
|
69
69
|
"prettier": "3.4.2",
|
|
70
|
-
"semver": "7.7.
|
|
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.3.
|
|
79
|
-
"@types/node": "22.13.
|
|
78
|
+
"@pob/root": "16.3.1",
|
|
79
|
+
"@types/node": "22.13.1"
|
|
80
80
|
}
|
|
81
81
|
}
|