pob 31.2.2 → 31.3.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,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.3.0](https://github.com/christophehurpeau/pob/compare/pob@31.2.3...pob@31.3.0) (2025-12-06)
|
|
7
|
+
|
|
8
|
+
Version bump for dependency: @pob/root
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [31.2.3](https://github.com/christophehurpeau/pob/compare/pob@31.2.2...pob@31.2.3) (2025-12-06)
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* properly configure app published to npm
|
|
16
|
+
|
|
17
|
+
Version bump for dependency: @pob/root
|
|
18
|
+
|
|
19
|
+
|
|
6
20
|
## [31.2.2](https://github.com/christophehurpeau/pob/compare/pob@31.2.1...pob@31.2.2) (2025-12-06)
|
|
7
21
|
|
|
8
22
|
Version bump for dependency: @pob/root
|
|
@@ -355,7 +355,12 @@ export default class PobAppGenerator extends Generator {
|
|
|
355
355
|
buildDirectory,
|
|
356
356
|
});
|
|
357
357
|
|
|
358
|
-
|
|
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.
|
|
3
|
+
"version": "31.3.0",
|
|
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.
|
|
76
|
+
"@pob/root": "20.3.0",
|
|
77
77
|
"@types/node": "22.19.1"
|
|
78
78
|
}
|
|
79
79
|
}
|