pob 9.8.0 → 9.9.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
+ # [9.9.0](https://github.com/christophehurpeau/pob/compare/pob@9.8.0...pob@9.9.0) (2021-12-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * update mem-fs ([8fdf8f7](https://github.com/christophehurpeau/pob/commit/8fdf8f79768ac0ca6e0326e629834657e2992c71))
12
+ * **pob:** ci testing check fix ([c8eb2cd](https://github.com/christophehurpeau/pob/commit/c8eb2cdf000766699e5590aebcc55e1c23d15700))
13
+ * coverage is a documentation ([cfde873](https://github.com/christophehurpeau/pob/commit/cfde8733ef340dd097143acb66e9acd87e69fbbe))
14
+ * defaults for readJSON5 method ([2a213b5](https://github.com/christophehurpeau/pob/commit/2a213b545be5e653b4f0a279983ea4cfeaacaa11))
15
+ * update legacy yarn2 to node-modules ([d543e5e](https://github.com/christophehurpeau/pob/commit/d543e5ede8273f16fb0416424671c2d1d7c60c73))
16
+
17
+
18
+ ### Features
19
+
20
+ * always use yarn workspaces commands ([83945e0](https://github.com/christophehurpeau/pob/commit/83945e0a2ee07c52ecd1a105e1e7b9749f91b712))
21
+ * **deps:** update dependency eslint to v8.5.0 ([#1069](https://github.com/christophehurpeau/pob/issues/1069)) ([46d8538](https://github.com/christophehurpeau/pob/commit/46d85381f97fbd55e424ca8b6f1fc0138900ff7f))
22
+
23
+
24
+
25
+
26
+
6
27
  # [9.8.0](https://github.com/christophehurpeau/pob/compare/pob@9.7.4...pob@9.8.0) (2021-12-12)
7
28
 
8
29
 
@@ -69,7 +69,7 @@ export default class CoreCIGenerator extends Generator {
69
69
  this.destinationPath('.github/workflows/push.yml'),
70
70
  {
71
71
  packageManager: this.options.packageManager,
72
- testing: this.options.testing && !!pkg.scripts.test,
72
+ testing: this.options.testing && !!pkg.scripts && !!pkg.scripts.test,
73
73
  checks: !!pkg.scripts && !!pkg.scripts.checks,
74
74
  documentation: this.options.documentation,
75
75
  build: this.options.build,
@@ -254,7 +254,9 @@ export default class PobLibGenerator extends Generator {
254
254
 
255
255
  // must be after testing
256
256
  this.composeWith('pob:common:format-lint', {
257
- documentation: !!this.pobjson.documentation,
257
+ documentation:
258
+ !!this.pobjson.documentation ||
259
+ !!(this.pobjson.testing && this.pobjson.testing.codecov),
258
260
  testing: this.pobjson.testing,
259
261
  packageManager: this.options.packageManager,
260
262
  yarnNodeLinker: this.options.yarnNodeLinker,
@@ -228,11 +228,6 @@ export default class PobMonorepoGenerator extends Generator {
228
228
  packagePaths: JSON.stringify(packagePaths),
229
229
  });
230
230
 
231
- // packageUtils.addOrRemoveScripts(pkg, this.pobLernaConfig.documentation, {
232
- // 'generate:test-coverage':
233
- // 'lerna run --parallel --ignore "*-example" generate:test-coverage',
234
- // });
235
-
236
231
  if (this.pobLernaConfig.documentation) {
237
232
  pkg.scripts.build = `${
238
233
  pkg.scripts.build ? `${pkg.scripts.build} && ` : ''
@@ -154,8 +154,6 @@ export default class MonorepoLernaGenerator extends Generator {
154
154
 
155
155
  const monorepoConfig = this.config.get('monorepo');
156
156
  const packageManager = this.npm ? 'npm' : 'yarn';
157
- const useYarnWorkspacesCommand =
158
- pkg.name === 'pob-monorepo' || pkg.name === 'nightingale-monorepo'; // this.options.packageManager === 'yarn';
159
157
 
160
158
  packageUtils.addScripts(pkg, {
161
159
  lint: `${packageManager} run lint:prettier && ${packageManager} run lint:eslint`,
@@ -174,7 +172,7 @@ export default class MonorepoLernaGenerator extends Generator {
174
172
  ? `NODE_OPTIONS=--max_old_space_size=4096 eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet . --ignore-pattern ${pkg.workspaces.join(
175
173
  ',',
176
174
  )} && yarn workspaces foreach --parallel -Av run lint:eslint`
177
- : 'lerna run --stream lint:eslint',
175
+ : 'npm run lint:eslint --workspaces',
178
176
  });
179
177
 
180
178
  this.fs.copyTpl(
@@ -193,16 +191,10 @@ export default class MonorepoLernaGenerator extends Generator {
193
191
  );
194
192
 
195
193
  packageUtils.addOrRemoveScripts(pkg, withBabel, {
196
- build: `${
197
- useYarnWorkspacesCommand
198
- ? 'yarn workspaces foreach --parallel --topological-dev -Av run'
199
- : 'lerna run --stream'
200
- } build`,
201
- watch: `${
202
- useYarnWorkspacesCommand
203
- ? 'yarn workspaces foreach --parallel --exclude "*-example" -Av run'
204
- : 'lerna run --parallel --ignore "*-example"'
205
- } watch`,
194
+ build:
195
+ 'yarn workspaces foreach --parallel --topological-dev -Av run build',
196
+ watch:
197
+ 'yarn workspaces foreach --parallel --exclude "*-example" -Av run watch',
206
198
  });
207
199
 
208
200
  // packageUtils.addOrRemoveScripts(pkg, withTypescript, {
@@ -82,7 +82,7 @@ export default class PobBaseGenerator extends Generator {
82
82
 
83
83
  if ('yarn2' in config) {
84
84
  if (config.yarn2) {
85
- config.yarnNodeLinker = 'pnp';
85
+ config.yarnNodeLinker = 'node-modules';
86
86
  }
87
87
  delete config.yarn2;
88
88
  }
package/lib/pob.js CHANGED
@@ -1,12 +1,10 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { execSync, spawnSync } from 'child_process';
3
+ import { spawnSync } from 'child_process';
4
4
  import fs, { existsSync, writeFileSync, readFileSync } from 'fs';
5
5
  import path from 'path';
6
6
  import argv from 'minimist-argv';
7
- // import updateNotifier from 'update-notifier';
8
7
  import yeoman from 'yeoman-environment';
9
- // import pkg from '../package.json';
10
8
  import PobAppGenerator from './generators/app/PobAppGenerator.js';
11
9
  import CommonBabelGenerator from './generators/common/babel/CommonBabelGenerator.js';
12
10
  import CommonLintGenerator from './generators/common/format-lint/CommonLintGenerator.js';
@@ -39,7 +37,6 @@ import { __dirname } from './pob-dirname.cjs';
39
37
  const printUsage = () => {
40
38
  console.error('Usage: pob [monorepo] [lib|app|init]');
41
39
  console.error(' pob [monorepo] update [--force]');
42
- console.error(' pob monorepo convert-npm');
43
40
  console.error(' pob add <packageName>');
44
41
  };
45
42
 
@@ -60,8 +57,6 @@ if (argv.version) {
60
57
  process.exit(0);
61
58
  }
62
59
 
63
- // updateNotifier({ pkg }).notify();
64
-
65
60
  const env = yeoman.createEnv();
66
61
 
67
62
  env.on('error', (err) => {
@@ -250,16 +245,6 @@ if (action === 'add') {
250
245
  process.exit(0);
251
246
  }
252
247
 
253
- if (monorepo && action === 'convert-npm') {
254
- execSync('sed -i \'/"npmClient": "yarn",/d\' ./lerna.json', {
255
- stdio: 'inherit',
256
- });
257
- execSync('npm install packages/*', { stdio: 'inherit' });
258
- execSync('yarn lerna link convert', { stdio: 'inherit' });
259
- execSync('rm -Rf yarn.lock packages/*/yarn.lock', { stdio: 'inherit' });
260
- process.exit(0);
261
- }
262
-
263
248
  const updateOnly = action === 'update';
264
249
  const init = action === 'init';
265
250
  const type = updateOnly || init ? null : action;
@@ -1,7 +1,7 @@
1
1
  import JSON5 from 'json5';
2
2
 
3
3
  export function readJSON5(fs, destinationPath, defaults) {
4
- const content = fs.read(destinationPath, null);
4
+ const content = fs.read(destinationPath, { defaults: null });
5
5
  if (content === null) return defaults;
6
6
  return JSON5.parse(content);
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "9.8.0",
3
+ "version": "9.9.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -48,7 +48,7 @@
48
48
  "@pob/sort-object": "^4.0.1",
49
49
  "@pob/sort-pkg": "^4.0.1",
50
50
  "@yarnpkg/parsers": "2.5.0-rc.6",
51
- "eslint": "8.4.1",
51
+ "eslint": "8.5.0",
52
52
  "findup-sync": "^5.0.0",
53
53
  "git-remote-url": "^1.0.1",
54
54
  "github-username": "^6.0.0",
@@ -57,16 +57,15 @@
57
57
  "json5": "^2.2.0",
58
58
  "lodash.camelcase": "^4.3.0",
59
59
  "lodash.kebabcase": "^4.1.1",
60
- "mem-fs": "1.2.0",
61
- "mem-fs-editor": "8.1.2",
60
+ "mem-fs": "2.2.1",
61
+ "mem-fs-editor": "9.3.0",
62
62
  "minimist-argv": "^1.1.0",
63
63
  "parse-author": "^2.0.0",
64
- "pob-dependencies": "6.3.3",
64
+ "pob-dependencies": "6.4.0",
65
65
  "prettier": "2.5.1",
66
66
  "semver": "^7.3.4",
67
- "update-notifier": "^5.0.1",
68
67
  "yeoman-environment": "^3.5.1",
69
68
  "yeoman-generator": "^5.4.0"
70
69
  },
71
- "gitHead": "1c94efb8acec1f95aeeea9b673c22c56497b9fcd"
70
+ "gitHead": "7f9d0b3c9e18734e5761e61dc09e89f3542b973b"
72
71
  }