pob 19.0.3 → 19.1.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,27 @@
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
+ ## [19.1.1](https://github.com/christophehurpeau/pob/compare/pob@19.1.0...pob@19.1.1) (2024-05-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * make sure .yarn/cache is deleted when disableYarnGitCache is enabled ([242c678](https://github.com/christophehurpeau/pob/commit/242c678a26b49b617d401b598c466cdeb88ad497))
12
+
13
+
14
+
15
+
16
+ ## [19.1.0](https://github.com/christophehurpeau/pob/compare/pob@19.0.3...pob@19.1.0) (2024-05-05)
17
+
18
+
19
+ ### Features
20
+
21
+ * support yarn nodeLinker pnpm ([340e5ab](https://github.com/christophehurpeau/pob/commit/340e5aba71f6943614445f50b20f1c3d3e68f01a))
22
+
23
+ Version bump for dependency: yarn-workspace-utils
24
+ Version bump for dependency: root
25
+
26
+
6
27
  ## [19.0.3](https://github.com/christophehurpeau/pob/compare/pob@19.0.2...pob@19.0.3) (2024-05-04)
7
28
 
8
29
  Note: no notable changes
@@ -191,6 +191,11 @@ export default class CoreYarnGenerator extends Generator {
191
191
  } else {
192
192
  this.fs.delete('.yarn/sdks');
193
193
  }
194
+ if (this.options.disableYarnGitCache) {
195
+ try {
196
+ this.spawnSync('rm', ['-rf', '.yarn/cache']);
197
+ } catch {}
198
+ }
194
199
  this.spawnSync('yarn', ['install'], {
195
200
  env: {
196
201
  YARN_ENABLE_IMMUTABLE_INSTALLS: 'false',
@@ -111,7 +111,7 @@ export default class PobBaseGenerator extends Generator {
111
111
  name: 'yarnNodeLinker',
112
112
  message: 'Witch Linker do you want to use ?',
113
113
  type: 'list',
114
- choices: ['node-modules', 'pnp'],
114
+ choices: ['node-modules', 'pnp', 'pnpm'],
115
115
  default: config.yarnNodeLinker || 'node-modules',
116
116
  },
117
117
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "19.0.3",
3
+ "version": "19.1.1",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -62,15 +62,15 @@
62
62
  "mem-fs-editor": "11.0.0",
63
63
  "minimist": "1.2.8",
64
64
  "parse-author": "2.0.0",
65
- "pob-dependencies": "11.2.3",
65
+ "pob-dependencies": "11.2.4",
66
66
  "prettier": "2.8.8",
67
67
  "semver": "7.6.0",
68
68
  "validate-npm-package-name": "^5.0.0",
69
- "yarn-workspace-utils": "3.4.0",
69
+ "yarn-workspace-utils": "3.4.1",
70
70
  "yeoman-environment": "4.4.0",
71
71
  "yeoman-generator": "7.1.1"
72
72
  },
73
73
  "devDependencies": {
74
- "@pob/root": "9.4.3"
74
+ "@pob/root": "9.5.0"
75
75
  }
76
76
  }