pob 15.4.1 → 16.0.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,16 @@
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
+ ## [16.0.0](https://github.com/christophehurpeau/pob/compare/pob@15.4.1...pob@16.0.0) (2023-12-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **pob:** make sure packageManager is not defined for non-root package.json ([d6d716d](https://github.com/christophehurpeau/pob/commit/d6d716dfa9ce826fed2d589d60b304fc17fe20af))
12
+
13
+ Version bump for dependency: yarn-workspace-utils
14
+
15
+
6
16
  ## [15.4.1](https://github.com/christophehurpeau/pob/compare/pob@15.4.0...pob@15.4.1) (2023-12-14)
7
17
 
8
18
 
@@ -56,6 +56,10 @@ export default class CorePackageGenerator extends Generator {
56
56
  pkg.engines.node = '>=18.12.0'; // .12.0 is the first lts node 18 version
57
57
  }
58
58
 
59
+ if (!this.options.isRoot) {
60
+ delete pkg.packageManager;
61
+ }
62
+
59
63
  if (!this.options.updateOnly) {
60
64
  if (this.options.isMonorepo && this.options.isRoot) {
61
65
  pkg.private = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "15.4.1",
3
+ "version": "16.0.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -62,11 +62,11 @@
62
62
  "mem-fs-editor": "11.0.0",
63
63
  "minimist": "1.2.8",
64
64
  "parse-author": "2.0.0",
65
- "pob-dependencies": "8.11.1",
65
+ "pob-dependencies": "9.0.0",
66
66
  "prettier": "2.8.8",
67
67
  "semver": "7.5.4",
68
68
  "validate-npm-package-name": "^5.0.0",
69
- "yarn-workspace-utils": "1.4.0",
69
+ "yarn-workspace-utils": "2.0.0",
70
70
  "yeoman-environment": "4.1.3",
71
71
  "yeoman-generator": "7.1.1"
72
72
  },