pob 31.2.1 → 31.2.3

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,20 @@
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
+ ## [31.2.3](https://github.com/christophehurpeau/pob/compare/pob@31.2.2...pob@31.2.3) (2025-12-06)
7
+
8
+ ### Bug Fixes
9
+
10
+ * properly configure app published to npm
11
+
12
+ Version bump for dependency: @pob/root
13
+
14
+
15
+ ## [31.2.2](https://github.com/christophehurpeau/pob/compare/pob@31.2.1...pob@31.2.2) (2025-12-06)
16
+
17
+ Version bump for dependency: @pob/root
18
+
19
+
6
20
  ## [31.2.1](https://github.com/christophehurpeau/pob/compare/pob@31.2.0...pob@31.2.1) (2025-12-06)
7
21
 
8
22
  ### Bug Fixes
@@ -355,7 +355,12 @@ export default class PobAppGenerator extends Generator {
355
355
  buildDirectory,
356
356
  });
357
357
 
358
- this.composeWith("pob:core:npm", { enable: false });
358
+ // some apps can be published as npm packages, like @pob/version
359
+ this.composeWith("pob:core:npm", {
360
+ enable: !pkg.private,
361
+ srcDirectory,
362
+ distDirectory: buildDirectory,
363
+ });
359
364
 
360
365
  switch (this.appConfig.type) {
361
366
  case "next.js":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "31.2.1",
3
+ "version": "31.2.3",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -73,7 +73,7 @@
73
73
  "yeoman-generator": "7.5.1"
74
74
  },
75
75
  "devDependencies": {
76
- "@pob/root": "20.2.0",
76
+ "@pob/root": "20.2.2",
77
77
  "@types/node": "22.19.1"
78
78
  }
79
79
  }