pob 9.14.0 → 9.14.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,18 @@
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
+ ## [9.14.1](https://github.com/christophehurpeau/pob/compare/pob@9.14.0...pob@9.14.1) (2022-01-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **pob:** vscode generator monorepo option ([cb589e8](https://github.com/christophehurpeau/pob/commit/cb589e80168eaf114a5b22bc4e454ec59d449097))
12
+ * **pob:** vscode generator tsdk path for monorepo ([fc92541](https://github.com/christophehurpeau/pob/commit/fc92541f5926a6892186c086940c966420e4ef83))
13
+
14
+
15
+
16
+
17
+
6
18
  # [9.14.0](https://github.com/christophehurpeau/pob/compare/pob@9.13.2...pob@9.14.0) (2022-01-20)
7
19
 
8
20
 
@@ -24,10 +24,10 @@ export default class CoreVSCodeGenerator extends Generator {
24
24
  });
25
25
 
26
26
  this.option('monorepo', {
27
- type: String,
27
+ type: Boolean,
28
28
  required: false,
29
- defaults: 'yarn',
30
- desc: 'yarn|npm.',
29
+ defaults: false,
30
+ desc: 'is monorepo',
31
31
  });
32
32
 
33
33
  this.option('testing', {
@@ -131,6 +131,9 @@ export default class CoreVSCodeGenerator extends Generator {
131
131
  extensions,
132
132
  settings: {
133
133
  ...settings,
134
+ ...(settings['typescript.tsdk']
135
+ ? { 'typescript.tsdk': '✨ root/node_modules/typescript/lib' }
136
+ : {}),
134
137
  ...(this.options.testing
135
138
  ? {
136
139
  'jest.jestCommandLine':
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "9.14.0",
3
+ "version": "9.14.1",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -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.9.0",
64
+ "pob-dependencies": "6.10.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": "0c5c353e99cdf592997765ff3f954b73d65df1d0"
70
+ "gitHead": "8e6c43e4b3090d88bc6f844e3f57de685a88ac96"
71
71
  }