pob 9.16.1 → 9.16.2

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
+ ## [9.16.2](https://github.com/christophehurpeau/pob/compare/pob@9.16.1...pob@9.16.2) (2022-02-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * add missing cwd in apps to work in monorepo ([d8357bc](https://github.com/christophehurpeau/pob/commit/d8357bceb325cb14b90a86bf0a89168aad58565b))
12
+ * **deps:** update @pob/eslint-config to v48.1.1 ([#1193](https://github.com/christophehurpeau/pob/issues/1193)) ([bc8b133](https://github.com/christophehurpeau/pob/commit/bc8b1336982c6461e17645cef40d719cd1a8ac1c))
13
+ * **pob:** add missing @babel/core in monorepo with pob-babel ([4595747](https://github.com/christophehurpeau/pob/commit/45957478be9d01e56ffcffc8d2f9bec3a9899b9a))
14
+
15
+
16
+
17
+
18
+
6
19
  ## [9.16.1](https://github.com/christophehurpeau/pob/compare/pob@9.16.0...pob@9.16.1) (2022-02-06)
7
20
 
8
21
 
@@ -4,5 +4,6 @@ import run from 'pob-babel/plugin-run.cjs';
4
4
  const watch = process.env.ROLLUP_WATCH === 'true';
5
5
 
6
6
  export default createRollupConfig({
7
+ cwd: new URL('.', import.meta.url).pathname,
7
8
  plugins: [watch && run({ execArgv: ['--enable-source-maps'] })],
8
9
  });
@@ -286,6 +286,7 @@ export default class PobMonorepoGenerator extends Generator {
286
286
  build: 'yarn clean:build && rollup --config rollup.config.mjs',
287
287
  });
288
288
  packageUtils.addOrRemoveDevDependencies(pkg, rollupConfigs.length, [
289
+ '@babel/core',
289
290
  'pob-babel',
290
291
  ]);
291
292
  this.fs.writeJSON(this.destinationPath('package.json'), pkg);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "9.16.1",
3
+ "version": "9.16.2",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -41,9 +41,9 @@
41
41
  "dependencies": {
42
42
  "@lerna/package-graph": "^4.0.0",
43
43
  "@lerna/project": "^4.0.0",
44
- "@pob/eslint-config": "48.1.0",
45
- "@pob/eslint-config-typescript": "48.1.0",
46
- "@pob/eslint-config-typescript-react": "48.1.0",
44
+ "@pob/eslint-config": "48.1.1",
45
+ "@pob/eslint-config-typescript": "48.1.1",
46
+ "@pob/eslint-config-typescript-react": "48.1.1",
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",
@@ -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.12.0",
64
+ "pob-dependencies": "6.12.1",
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": "45b478920c1bf22dd877b746046c10c1429bdac6"
70
+ "gitHead": "97e55d45699b7fa32b72635f3f202e9d3cf326df"
71
71
  }