pob 10.2.0 → 10.2.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,19 @@
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
+ ## [10.2.1](https://github.com/christophehurpeau/pob/compare/pob@10.2.0...pob@10.2.1) (2022-02-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency @yarnpkg/parsers to v2.5.0-rc.14 ([#1213](https://github.com/christophehurpeau/pob/issues/1213)) ([82319b2](https://github.com/christophehurpeau/pob/commit/82319b27f6091cbb19851573d650620cfa361519))
12
+ * only enable incremental for composite tsconfigs ([b73a16a](https://github.com/christophehurpeau/pob/commit/b73a16a15a09f68cde3ad22d01331418c3a5d92c))
13
+ * **pob:** clean script ([6f2646e](https://github.com/christophehurpeau/pob/commit/6f2646e150e5ca4c889f5657811273a44eb68549))
14
+
15
+
16
+
17
+
18
+
6
19
  # [10.2.0](https://github.com/christophehurpeau/pob/compare/pob@10.1.0...pob@10.2.0) (2022-02-13)
7
20
 
8
21
 
@@ -99,12 +99,6 @@ export default class PobAppGenerator extends Generator {
99
99
  },
100
100
  ]);
101
101
 
102
- execSync(
103
- `rm -Rf ${['lib-*', 'coverage', 'docs', 'dist']
104
- .filter(Boolean)
105
- .join(' ')}`,
106
- );
107
-
108
102
  this.config.set('app', this.appConfig);
109
103
  this.config.save();
110
104
  }
@@ -231,6 +225,12 @@ export default class PobAppGenerator extends Generator {
231
225
  });
232
226
  break;
233
227
  }
228
+
229
+ execSync(
230
+ `rm -Rf ${['lib-*', 'coverage', 'docs', 'dist']
231
+ .filter(Boolean)
232
+ .join(' ')}`,
233
+ );
234
234
  }
235
235
 
236
236
  writing() {
@@ -10,11 +10,11 @@
10
10
  <% } -%>
11
11
  "compilerOptions": {
12
12
  "rootDir": "<%= rootDir %>",
13
- "incremental": true,
14
13
  <% if(!composite) { -%>
15
14
  /* No emit in default config file. See build config file for config to build declaration files */
16
15
  "noEmit": true,
17
16
  <% } else { -%>
17
+ "incremental": true,
18
18
  "composite": true,
19
19
  "noEmit": false,
20
20
  "noEmitOnError": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "10.2.0",
3
+ "version": "10.2.1",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -47,7 +47,7 @@
47
47
  "@pob/sort-eslint-config": "^3.0.1",
48
48
  "@pob/sort-object": "^4.0.1",
49
49
  "@pob/sort-pkg": "^4.0.1",
50
- "@yarnpkg/parsers": "2.5.0-rc.13",
50
+ "@yarnpkg/parsers": "2.5.0-rc.14",
51
51
  "eslint": "8.9.0",
52
52
  "findup-sync": "^5.0.0",
53
53
  "git-remote-url": "^1.0.1",
@@ -61,11 +61,11 @@
61
61
  "mem-fs-editor": "9.4.0",
62
62
  "minimist-argv": "^1.1.0",
63
63
  "parse-author": "^2.0.0",
64
- "pob-dependencies": "6.15.0",
64
+ "pob-dependencies": "6.16.0",
65
65
  "prettier": "2.5.1",
66
66
  "semver": "^7.3.4",
67
67
  "yeoman-environment": "^3.5.1",
68
68
  "yeoman-generator": "^5.4.0"
69
69
  },
70
- "gitHead": "0652ebee362a0e15f2d0cc1f936e461c7e32effd"
70
+ "gitHead": "f23f89112a35d2df5b8e6da96dee061043b4c362"
71
71
  }