escover 3.5.1 → 3.5.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 CHANGED
@@ -1,3 +1,9 @@
1
+ 2023.08.04, v3.5.2
2
+
3
+ feature:
4
+ - 95cc7a5 package: eslint-plugin-putout v19.0.0
5
+ - a2d2857 package: putout v31.0.0
6
+
1
7
  2023.07.31, v3.5.1
2
8
 
3
9
  fix:
package/lib/cli/cli.js CHANGED
@@ -4,7 +4,8 @@ import yargsParser from 'yargs-parser';
4
4
  import {version} from './version.js';
5
5
  import reportLines from '../formatters/lines.js';
6
6
  import reportFiles from '../formatters/files.js';
7
- import {exit as mainExit} from '../exit.js';
7
+
8
+ const noop = () => {};
8
9
 
9
10
  const {ESCOVER_FORMAT} = process.env;
10
11
 
@@ -31,7 +32,7 @@ export const cli = ({argv, exit, readCoverage}) => {
31
32
  const cmd = argv.slice(2);
32
33
 
33
34
  if (cmd.length) {
34
- execute(`"${cmd.join('" "')}"`, () => {});
35
+ execute(`"${cmd.join('" "')}"`, noop);
35
36
  }
36
37
 
37
38
  const coverage = readCoverage();
package/lib/escover.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import process from 'process';
2
2
  import montag from 'montag';
3
3
  import {instrument} from './instrument/index.js';
4
- import {exit} from './exit.js';
5
4
  import {createFileEntry} from './c4.js';
6
5
  import {
7
6
  readConfig,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escover",
3
- "version": "3.5.1",
3
+ "version": "3.5.2",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "Coverage for EcmaScript Modules",
6
6
  "main": "lib/escover.js",
@@ -47,7 +47,7 @@
47
47
  "montag": "^1.2.1",
48
48
  "once": "^1.4.0",
49
49
  "picomatch": "^2.3.1",
50
- "putout": "^30.7.0",
50
+ "putout": "^31.0.0",
51
51
  "strip-ansi": "^7.0.1",
52
52
  "table": "^6.8.0",
53
53
  "try-catch": "^3.0.0",
@@ -64,7 +64,7 @@
64
64
  "escover": "^3.2.0",
65
65
  "eslint": "^8.3.0",
66
66
  "eslint-plugin-n": "^16.0.0",
67
- "eslint-plugin-putout": "^18.2.0",
67
+ "eslint-plugin-putout": "^19.0.0",
68
68
  "madrun": "^9.0.0",
69
69
  "supertape": "^8.0.1"
70
70
  }