escover 3.6.1 → 3.8.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 +11 -0
- package/bin/escover.js +1 -0
- package/lib/cli/cli.js +1 -0
- package/lib/formatters/files.js +1 -0
- package/package.json +4 -4
package/ChangeLog
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
2023.10.02, v3.8.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 403e522 package: @putout/plugin-convert-optional-to-logical v3.1.0
|
|
5
|
+
- b2fe53e package: eslint-plugin-putout v20.0.0
|
|
6
|
+
|
|
7
|
+
2023.09.14, v3.7.0
|
|
8
|
+
|
|
9
|
+
feature:
|
|
10
|
+
- 91c6066 package: putout v32.0.0
|
|
11
|
+
|
|
1
12
|
2023.08.27, v3.6.1
|
|
2
13
|
|
|
3
14
|
feature:
|
package/bin/escover.js
CHANGED
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';
|
package/lib/formatters/files.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "escover",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.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": "^
|
|
42
|
+
"@putout/plugin-convert-optional-to-logical": "^3.1.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": "^
|
|
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",
|
|
@@ -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": "^
|
|
67
|
+
"eslint-plugin-putout": "^20.0.0",
|
|
68
68
|
"madrun": "^9.0.0",
|
|
69
69
|
"supertape": "^8.0.1"
|
|
70
70
|
}
|