escover 3.2.4 → 3.3.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 CHANGED
@@ -1,3 +1,11 @@
1
+ 2023.05.26, v3.3.0
2
+
3
+ fix:
4
+ - 18db2ed escover: cli
5
+
6
+ feature:
7
+ - 5409caa package: eslint-plugin-n v16.0.0
8
+
1
9
  2023.05.10, v3.2.4
2
10
 
3
11
  fix:
package/lib/cli/cli.js CHANGED
@@ -5,13 +5,11 @@ import {version} from './version.js';
5
5
  import reportLines from '../formatters/lines.js';
6
6
  import reportFiles from '../formatters/files.js';
7
7
 
8
- const {
9
- ESCOVER_FORMAT,
10
- NODE_OPTIONS = '',
11
- } = process.env;
8
+ const {ESCOVER_FORMAT} = process.env;
12
9
 
13
- export const ESCOVER_NODE_OPTIONS = `'--no-warnings --loader zenload ${NODE_OPTIONS}'`;
10
+ export const ESCOVER_NODE_OPTIONS = '--no-warnings --loader zenload';
14
11
 
12
+ // ${NODE_OPTIONS}'`;
15
13
  export const cli = ({argv, exit, readCoverage}) => {
16
14
  const args = yargsParser(argv.slice(2), {
17
15
  string: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escover",
3
- "version": "3.2.4",
3
+ "version": "3.3.0",
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",
@@ -64,7 +64,7 @@
64
64
  "c8": "^7.8.0",
65
65
  "escover": "^3.2.0",
66
66
  "eslint": "^8.3.0",
67
- "eslint-plugin-n": "^15.2.4",
67
+ "eslint-plugin-n": "^16.0.0",
68
68
  "eslint-plugin-putout": "^17.5.1",
69
69
  "madrun": "^9.0.0",
70
70
  "supertape": "^8.0.1"