pob 32.0.0 → 33.0.1

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,26 @@
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
+ ## [33.0.1](https://github.com/christophehurpeau/pob/compare/pob@33.0.0...pob@33.0.1) (2026-03-01)
7
+
8
+ ### Bug Fixes
9
+
10
+ * add missing 'pob-dependencies' to npmPreapprovedPackages list
11
+
12
+ ## [33.0.0](https://github.com/christophehurpeau/pob/compare/pob@32.0.0...pob@33.0.0) (2026-03-01)
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ * deprecate pob-babel and babel-preset-pob-env
17
+
18
+ ### Features
19
+
20
+ * deprecate pob-babel and babel-preset-pob-env
21
+
22
+ Version bump for dependency: pob-dependencies
23
+ Version bump for dependency: @pob/root
24
+
25
+
6
26
  ## [32.0.0](https://github.com/christophehurpeau/pob/compare/pob@31.4.2...pob@32.0.0) (2026-03-01)
7
27
 
8
28
  ### ⚠ BREAKING CHANGES
@@ -774,4 +774,10 @@ export default class CommonTranspilerGenerator extends Generator {
774
774
 
775
775
  this.fs.writeJSON(this.destinationPath("package.json"), pkg);
776
776
  }
777
+
778
+ end() {
779
+ if (this.bundler) {
780
+ this.spawnSync("yarn", ["run", "build"]);
781
+ }
782
+ }
777
783
  }
@@ -180,6 +180,7 @@ export default class CoreYarnGenerator extends Generator {
180
180
  config.npmMinimalAgeGate = 1440 * 3; // 3 days
181
181
  config.npmPreapprovedPackages = [
182
182
  "@pob/*",
183
+ "pob-dependencies",
183
184
  "alouette",
184
185
  "alouette-icons",
185
186
  "nightingale",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "32.0.0",
3
+ "version": "33.0.1",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -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": "21.1.0",
66
+ "pob-dependencies": "22.0.0",
67
67
  "prettier": "3.8.1",
68
68
  "semver": "7.7.3",
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": "21.0.0",
75
+ "@pob/root": "22.0.0",
76
76
  "@types/node": "22.19.1"
77
77
  }
78
78
  }