pob 9.0.0 → 9.1.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,23 @@
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.1.0](https://github.com/christophehurpeau/pob/compare/pob@9.0.0...pob@9.1.0) (2021-12-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **pob:** replace devPlugins by plugins ([ddd0681](https://github.com/christophehurpeau/pob/commit/ddd0681284b5f5e9f851737beb2ec76bd69f01be))
12
+
13
+
14
+ ### Features
15
+
16
+ * move @babel/core to pob-babel dependencies ([3d42287](https://github.com/christophehurpeau/pob/commit/3d422877476b443a2ea6789e0656ce676963451d))
17
+ * set rollup as dependencies ([8a3a87b](https://github.com/christophehurpeau/pob/commit/8a3a87bd7c541d92ce63bcf33043fedb2df98d01))
18
+
19
+
20
+
21
+
22
+
6
23
  # [9.0.0](https://github.com/christophehurpeau/pob/compare/pob@8.10.1...pob@9.0.0) (2021-12-11)
7
24
 
8
25
 
@@ -321,11 +321,7 @@ export default class CommonBabelGenerator extends Generator {
321
321
 
322
322
  /* dependencies */
323
323
 
324
- packageUtils.addOrRemoveDevDependencies(pkg, useBabel, [
325
- '@babel/core',
326
- 'pob-babel',
327
- 'rollup',
328
- ]);
324
+ packageUtils.addOrRemoveDevDependencies(pkg, useBabel, ['pob-babel']);
329
325
 
330
326
  if (pkg.dependencies && pkg.dependencies['pob-babel']) {
331
327
  // update pob-babel in alp-dev
@@ -341,6 +337,8 @@ export default class CommonBabelGenerator extends Generator {
341
337
  ]);
342
338
 
343
339
  packageUtils.removeDevDependencies(pkg, [
340
+ '@babel/core',
341
+ 'rollup',
344
342
  'babel-preset-env', // now @babel/preset-env
345
343
  'babel-preset-jsdoc',
346
344
  'babel-plugin-add-jsdoc-annotations',
@@ -4,5 +4,5 @@ import createRollupConfig from 'pob-babel/createRollupConfig.js';
4
4
  const watch = process.env.ROLLUP_WATCH === 'true';
5
5
 
6
6
  export default createRollupConfig({
7
- devPlugins: [watch && run({ execArgv: ['--enable-source-maps'] })],
7
+ plugins: [watch && run({ execArgv: ['--enable-source-maps'] })],
8
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "9.0.0",
3
+ "version": "9.1.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -63,12 +63,12 @@
63
63
  "mem-fs-editor": "8.1.2",
64
64
  "minimist-argv": "^1.1.0",
65
65
  "parse-author": "^2.0.0",
66
- "pob-dependencies": "^6.0.0",
66
+ "pob-dependencies": "^6.0.1",
67
67
  "prettier": "2.5.1",
68
68
  "semver": "^7.3.4",
69
69
  "update-notifier": "^5.0.1",
70
70
  "yeoman-environment": "^3.5.1",
71
71
  "yeoman-generator": "^5.4.0"
72
72
  },
73
- "gitHead": "eec3c30b83fbb8d9dd9caa947c6c64977dd14403"
73
+ "gitHead": "be649f7d438a93be34f177ee53a339e12bbe8e7b"
74
74
  }