pob 19.1.0 → 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,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
+ ## [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
+
6
16
  ## [19.1.0](https://github.com/christophehurpeau/pob/compare/pob@19.0.3...pob@19.1.0) (2024-05-05)
7
17
 
8
18
 
@@ -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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "19.1.0",
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"