escover 1.20.2 → 2.0.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 +28 -0
- package/lib/formatters/files.js +1 -1
- package/package.json +10 -10
package/ChangeLog
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
2022.03.07, v2.0.2
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- escover: mock-import: dependencies -> devDependencies
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- package: eslint-plugin-putout v14.4.0
|
|
9
|
+
- package: escover v2.0.1
|
|
10
|
+
- package: mock-import v3.0.0
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
2022.02.17, v2.0.1
|
|
14
|
+
|
|
15
|
+
feature:
|
|
16
|
+
- (package) zenload v2.0.0
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
2022.02.17, v2.0.0
|
|
20
|
+
|
|
21
|
+
feature:
|
|
22
|
+
- escover: drop support of node < 16
|
|
23
|
+
- (package) @putout/test v5.0.0
|
|
24
|
+
- (package) putout v25.0.0
|
|
25
|
+
- (package) madrun v9.0.0
|
|
26
|
+
- (package) supertape v7.0.0
|
|
27
|
+
|
|
28
|
+
|
|
1
29
|
2022.02.16, v1.20.2
|
|
2
30
|
|
|
3
31
|
fix:
|
package/lib/formatters/files.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "escover",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.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",
|
|
@@ -43,29 +43,29 @@
|
|
|
43
43
|
"chalk": "^5.0.0",
|
|
44
44
|
"find-cache-dir": "^3.3.2",
|
|
45
45
|
"find-up": "^6.2.0",
|
|
46
|
-
"mock-import": "^2.11.1",
|
|
47
46
|
"montag": "^1.2.1",
|
|
48
47
|
"once": "^1.4.0",
|
|
49
48
|
"picomatch": "^2.3.1",
|
|
50
|
-
"putout": "^
|
|
49
|
+
"putout": "^25.0.0",
|
|
51
50
|
"strip-ansi": "^7.0.1",
|
|
52
51
|
"table": "^6.8.0",
|
|
53
52
|
"try-catch": "^3.0.0",
|
|
54
53
|
"yargs-parser": "^21.0.0",
|
|
55
|
-
"zenload": "^
|
|
54
|
+
"zenload": "^2.0.0"
|
|
56
55
|
},
|
|
57
56
|
"engines": {
|
|
58
|
-
"node": ">=
|
|
57
|
+
"node": ">=16"
|
|
59
58
|
},
|
|
60
59
|
"license": "MIT",
|
|
61
60
|
"devDependencies": {
|
|
62
|
-
"@putout/test": "^
|
|
61
|
+
"@putout/test": "^5.0.0",
|
|
63
62
|
"c8": "^7.8.0",
|
|
64
|
-
"escover": "^
|
|
63
|
+
"escover": "^2.0.1",
|
|
65
64
|
"eslint": "^8.3.0",
|
|
66
65
|
"eslint-plugin-node": "^11.1.0",
|
|
67
|
-
"eslint-plugin-putout": "^
|
|
68
|
-
"madrun": "^
|
|
69
|
-
"
|
|
66
|
+
"eslint-plugin-putout": "^14.4.0",
|
|
67
|
+
"madrun": "^9.0.0",
|
|
68
|
+
"mock-import": "^3.0.0",
|
|
69
|
+
"supertape": "^7.0.0"
|
|
70
70
|
}
|
|
71
71
|
}
|