pob 22.1.0 → 22.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,32 @@
|
|
|
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
|
+
## [22.2.0](https://github.com/christophehurpeau/pob/compare/pob@22.1.1...pob@22.2.0) (2024-07-27)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **deps:** update dependency yeoman-generator to v7.3.0 ([#2098](https://github.com/christophehurpeau/pob/issues/2098)) ([5e2295b](https://github.com/christophehurpeau/pob/commit/5e2295b2e983752f7eaf42c22d30cced22c5fce6))
|
|
11
|
+
* **deps:** update yarn monorepo ([#2087](https://github.com/christophehurpeau/pob/issues/2087)) ([fa9d77b](https://github.com/christophehurpeau/pob/commit/fa9d77bf2cfe11d736d288362ad5df9255533e65))
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **deps:** update dependency prettier to v3.3.2 ([#2089](https://github.com/christophehurpeau/pob/issues/2089)) ([cc20ddd](https://github.com/christophehurpeau/pob/commit/cc20ddd10f743f57b0f13e3630b2945cdb1104a9))
|
|
16
|
+
* **deps:** update dependency prettier to v3.3.3 ([#2140](https://github.com/christophehurpeau/pob/issues/2140)) ([c44959e](https://github.com/christophehurpeau/pob/commit/c44959ed852e087419bf5b61f9460e6a3e02b789))
|
|
17
|
+
* **deps:** update dependency semver to v7.6.3 ([#2141](https://github.com/christophehurpeau/pob/issues/2141)) ([047d95c](https://github.com/christophehurpeau/pob/commit/047d95c38ce1e5b267be78579400620b99c7de64))
|
|
18
|
+
* **deps:** update dependency yeoman-generator to v7.3.1 ([#2099](https://github.com/christophehurpeau/pob/issues/2099)) ([a632c39](https://github.com/christophehurpeau/pob/commit/a632c39899b44a4222e9e48fe1f5c1b038b60824))
|
|
19
|
+
* **deps:** update dependency yeoman-generator to v7.3.2 ([#2118](https://github.com/christophehurpeau/pob/issues/2118)) ([f385316](https://github.com/christophehurpeau/pob/commit/f3853160b128a36843e14ef63a3d8d58d53dd08a))
|
|
20
|
+
* **deps:** update yarn monorepo ([#2111](https://github.com/christophehurpeau/pob/issues/2111)) ([7abc59d](https://github.com/christophehurpeau/pob/commit/7abc59d18cf9f3ea2ca9b763be4d4c9477253bcb))
|
|
21
|
+
|
|
22
|
+
Version bump for dependency: @pob/sort-pkg
|
|
23
|
+
Version bump for dependency: yarn-workspace-utils
|
|
24
|
+
Version bump for dependency: @pob/root
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## [22.1.1](https://github.com/christophehurpeau/pob/compare/pob@22.1.0...pob@22.1.1) (2024-06-08)
|
|
28
|
+
|
|
29
|
+
Version bump for dependency: @pob/root
|
|
30
|
+
|
|
31
|
+
|
|
6
32
|
## [22.1.0](https://github.com/christophehurpeau/pob/compare/pob@22.0.0...pob@22.1.0) (2024-06-08)
|
|
7
33
|
|
|
8
34
|
### Features
|
|
@@ -178,7 +178,7 @@ export default class CommonTestingGenerator extends Generator {
|
|
|
178
178
|
let hasReact =
|
|
179
179
|
withTypescript &&
|
|
180
180
|
(this.options.monorepo
|
|
181
|
-
? yoConfigPobMonorepo.react ?? packageUtils.hasReact(pkg)
|
|
181
|
+
? (yoConfigPobMonorepo.react ?? packageUtils.hasReact(pkg))
|
|
182
182
|
: packageUtils.hasReact(pkg));
|
|
183
183
|
const testRunner = globalTesting
|
|
184
184
|
? inMonorepo.pobConfig.monorepo.testRunner || "jest"
|
|
@@ -136,8 +136,8 @@ export default class CommonTranspilerGenerator extends Generator {
|
|
|
136
136
|
withTypescript &&
|
|
137
137
|
(pkg.pob.rollup === false
|
|
138
138
|
? "tsc"
|
|
139
|
-
: pkg.pob.bundler ??
|
|
140
|
-
(pkg.pob.typescript ? "rollup-typescript" : "rollup-babel"));
|
|
139
|
+
: (pkg.pob.bundler ??
|
|
140
|
+
(pkg.pob.typescript ? "rollup-typescript" : "rollup-babel")));
|
|
141
141
|
this.bundler = bundler;
|
|
142
142
|
|
|
143
143
|
const cleanCommand = (() => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "22.
|
|
3
|
+
"version": "22.2.0",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"@pob/eslint-config-typescript-react": "56.0.0",
|
|
46
46
|
"@pob/sort-eslint-config": "5.3.1",
|
|
47
47
|
"@pob/sort-object": "6.3.1",
|
|
48
|
-
"@pob/sort-pkg": "7.
|
|
48
|
+
"@pob/sort-pkg": "7.3.0",
|
|
49
49
|
"@prettier/sync": "0.5.2",
|
|
50
50
|
"@types/inquirer": "9.0.7",
|
|
51
|
-
"@yarnpkg/cli": "4.
|
|
52
|
-
"@yarnpkg/core": "4.
|
|
51
|
+
"@yarnpkg/cli": "4.3.1",
|
|
52
|
+
"@yarnpkg/core": "4.1.1",
|
|
53
53
|
"@yarnpkg/fslib": "3.1.0",
|
|
54
54
|
"@yeoman/types": "1.2.0",
|
|
55
55
|
"eslint": "8.57.0",
|
|
@@ -64,17 +64,17 @@
|
|
|
64
64
|
"mem-fs-editor": "11.0.1",
|
|
65
65
|
"minimist": "1.2.8",
|
|
66
66
|
"parse-author": "2.0.0",
|
|
67
|
-
"pob-dependencies": "13.
|
|
68
|
-
"prettier": "3.3.
|
|
69
|
-
"semver": "7.6.
|
|
67
|
+
"pob-dependencies": "13.2.0",
|
|
68
|
+
"prettier": "3.3.3",
|
|
69
|
+
"semver": "7.6.3",
|
|
70
70
|
"validate-npm-package-name": "^5.0.0",
|
|
71
|
-
"yarn-workspace-utils": "5.
|
|
71
|
+
"yarn-workspace-utils": "5.1.0",
|
|
72
72
|
"yeoman-environment": "4.4.1",
|
|
73
|
-
"yeoman-generator": "7.2
|
|
73
|
+
"yeoman-generator": "7.3.2"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@pob/root": "12.
|
|
77
|
-
"@types/node": "20.14.
|
|
76
|
+
"@pob/root": "12.2.0",
|
|
77
|
+
"@types/node": "20.14.12",
|
|
78
78
|
"typescript": "5.4.5"
|
|
79
79
|
}
|
|
80
80
|
}
|