escover 3.6.0 → 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,13 @@
1
+ 2023.09.14, v3.7.0
2
+
3
+ feature:
4
+ - 91c6066 package: putout v32.0.0
5
+
6
+ 2023.08.27, v3.6.1
7
+
8
+ feature:
9
+ - 7cb7e37 package: @putout/plugin-convert-optional-to-logical v2.0.0
10
+
1
11
  2023.08.27, v3.6.0
2
12
 
3
13
  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
 
@@ -1,6 +1,6 @@
1
1
  import putout from 'putout';
2
2
  import * as mark from './plugin-mark/index.js';
3
- import convertOptionalToLogical from '@putout/plugin-convert-optional-to-logical';
3
+ import * as convertOptionalToLogical from '@putout/plugin-convert-optional-to-logical';
4
4
 
5
5
  const cut = (a) => a.replace('#!/usr/bin/env node', '');
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escover",
3
- "version": "3.6.0",
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",
@@ -39,7 +39,7 @@
39
39
  "prewisdom": "madrun prewisdom"
40
40
  },
41
41
  "dependencies": {
42
- "@putout/plugin-convert-optional-to-logical": "^1.0.0",
42
+ "@putout/plugin-convert-optional-to-logical": "^2.0.0",
43
43
  "chalk": "^5.0.0",
44
44
  "find-cache-dir": "^5.0.0",
45
45
  "find-up": "^6.2.0",
@@ -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",