pob 21.1.0 → 22.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
+ ## [22.0.0](https://github.com/christophehurpeau/pob/compare/pob@21.1.0...pob@22.0.0) (2024-06-07)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **pob:** yarn config delete compressionLevel if present ([719c86d](https://github.com/christophehurpeau/pob/commit/719c86d172323aac6c616f6d4d013ee683c217aa))
11
+
12
+ Version bump for dependency: yarn-workspace-utils
13
+ Version bump for dependency: @pob/root
14
+
15
+
6
16
  ## [21.1.0](https://github.com/christophehurpeau/pob/compare/pob@21.0.0...pob@21.1.0) (2024-06-07)
7
17
 
8
18
  Version bump for dependency: @pob/root
@@ -148,6 +148,7 @@ export default class CoreYarnGenerator extends Generator {
148
148
  }) || {};
149
149
  if (this.options.disableYarnGitCache) {
150
150
  // leave default compressionLevel instead of this next line
151
+ delete config.compressionLevel;
151
152
  // config.compressionLevel = "mixed"; // optimized for size
152
153
  config.enableGlobalCache = true;
153
154
  delete config.supportedArchitectures;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "21.1.0",
3
+ "version": "22.0.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -64,16 +64,16 @@
64
64
  "mem-fs-editor": "11.0.1",
65
65
  "minimist": "1.2.8",
66
66
  "parse-author": "2.0.0",
67
- "pob-dependencies": "12.0.0",
67
+ "pob-dependencies": "13.0.0",
68
68
  "prettier": "3.3.1",
69
69
  "semver": "7.6.2",
70
70
  "validate-npm-package-name": "^5.0.0",
71
- "yarn-workspace-utils": "4.0.0",
71
+ "yarn-workspace-utils": "5.0.0",
72
72
  "yeoman-environment": "4.4.1",
73
73
  "yeoman-generator": "7.2.0"
74
74
  },
75
75
  "devDependencies": {
76
- "@pob/root": "11.1.0",
76
+ "@pob/root": "12.0.0",
77
77
  "@types/node": "20.14.2",
78
78
  "typescript": "5.4.5"
79
79
  }