escover 3.6.1 → 3.7.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,8 @@
1
+ 2023.09.14, v3.7.0
2
+
3
+ feature:
4
+ - 91c6066 package: putout v32.0.0
5
+
1
6
  2023.08.27, v3.6.1
2
7
 
3
8
  feature:
package/bin/escover.js CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  import {cli} from '../lib/cli/cli.js';
4
4
  import {readCoverage} from '../lib/coverage-file/coverage-file.js';
5
+ import process from 'node:process';
5
6
  import {readConfig} from '../lib/config.js';
6
7
 
7
8
  cli({
package/lib/cli/cli.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import {execSync} from 'node:child_process';
2
2
  import tryCatch from 'try-catch';
3
3
  import yargsParser from 'yargs-parser';
4
+ import process from 'node:process';
4
5
  import {version} from './version.js';
5
6
  import reportLines from '../formatters/lines.js';
6
7
  import reportFiles from '../formatters/files.js';
@@ -3,6 +3,7 @@ import {
3
3
  getBorderCharacters,
4
4
  } from 'table';
5
5
  import chalk from 'chalk';
6
+ import process from 'node:process';
6
7
 
7
8
  const CWD = process.cwd();
8
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escover",
3
- "version": "3.6.1",
3
+ "version": "3.7.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",
@@ -47,7 +47,7 @@
47
47
  "montag": "^1.2.1",
48
48
  "once": "^1.4.0",
49
49
  "picomatch": "^2.3.1",
50
- "putout": "^31.0.0",
50
+ "putout": "^32.0.0",
51
51
  "strip-ansi": "^7.0.1",
52
52
  "table": "^6.8.0",
53
53
  "try-catch": "^3.0.0",