pob 19.1.0 → 19.2.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,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.2.0](https://github.com/christophehurpeau/pob/compare/pob@19.1.1...pob@19.2.0) (2024-05-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add tsconfig template for js ([237ad7a](https://github.com/christophehurpeau/pob/commit/237ad7a54abe14d8f49db8057adffe00d1b823cd))
|
|
12
|
+
* **deps:** update @pob/eslint-config to v55.3.0 ([#2035](https://github.com/christophehurpeau/pob/issues/2035)) ([0f05da8](https://github.com/christophehurpeau/pob/commit/0f05da803035953e8b32c87bab59649cdb448aa5))
|
|
13
|
+
|
|
14
|
+
Version bump for dependency: yarn-workspace-utils
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [19.1.1](https://github.com/christophehurpeau/pob/compare/pob@19.1.0...pob@19.1.1) (2024-05-05)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* make sure .yarn/cache is deleted when disableYarnGitCache is enabled ([242c678](https://github.com/christophehurpeau/pob/commit/242c678a26b49b617d401b598c466cdeb88ad497))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
6
27
|
## [19.1.0](https://github.com/christophehurpeau/pob/compare/pob@19.0.3...pob@19.1.0) (2024-05-05)
|
|
7
28
|
|
|
8
29
|
|
|
@@ -59,8 +59,7 @@ function updateParserAndPlugins(
|
|
|
59
59
|
};
|
|
60
60
|
} else {
|
|
61
61
|
config.parserOptions = {
|
|
62
|
-
//
|
|
63
|
-
EXPERIMENTAL_useProjectService: true,
|
|
62
|
+
// EXPERIMENTAL_useProjectService: true,
|
|
64
63
|
project: `${relativePath}/tsconfig.json`,
|
|
65
64
|
};
|
|
66
65
|
}
|
|
@@ -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.
|
|
3
|
+
"version": "19.2.0",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"pob": {},
|
|
40
40
|
"prettier": "@pob/root/prettier-config",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@pob/eslint-config": "55.
|
|
43
|
-
"@pob/eslint-config-typescript": "55.
|
|
44
|
-
"@pob/eslint-config-typescript-react": "55.
|
|
42
|
+
"@pob/eslint-config": "55.3.0",
|
|
43
|
+
"@pob/eslint-config-typescript": "55.3.0",
|
|
44
|
+
"@pob/eslint-config-typescript-react": "55.3.0",
|
|
45
45
|
"@pob/sort-eslint-config": "5.3.0",
|
|
46
46
|
"@pob/sort-object": "6.3.0",
|
|
47
47
|
"@pob/sort-pkg": "7.1.0",
|
|
@@ -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": "11.
|
|
65
|
+
"pob-dependencies": "11.3.0",
|
|
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.
|
|
69
|
+
"yarn-workspace-utils": "3.5.0",
|
|
70
70
|
"yeoman-environment": "4.4.0",
|
|
71
71
|
"yeoman-generator": "7.1.1"
|
|
72
72
|
},
|