@vitest/coverage-istanbul 3.0.0 → 3.0.1
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/dist/provider.js +1 -2
- package/package.json +4 -4
package/dist/provider.js
CHANGED
@@ -20,7 +20,6 @@ function normalizeWindowsPath(input = "") {
|
|
20
20
|
return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
|
21
21
|
}
|
22
22
|
const _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
|
23
|
-
globalThis.process?.platform === "win32" ? ";" : ":";
|
24
23
|
function cwd() {
|
25
24
|
if (typeof process !== "undefined" && typeof process.cwd === "function") {
|
26
25
|
return process.cwd().replace(/\\/g, "/");
|
@@ -108,7 +107,7 @@ const isAbsolute = function(p) {
|
|
108
107
|
return _IS_ABSOLUTE_RE.test(p);
|
109
108
|
};
|
110
109
|
|
111
|
-
var version = "3.0.
|
110
|
+
var version = "3.0.1";
|
112
111
|
|
113
112
|
const debug = createDebug("vitest:coverage");
|
114
113
|
class IstanbulCoverageProvider extends BaseCoverageProvider {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vitest/coverage-istanbul",
|
3
3
|
"type": "module",
|
4
|
-
"version": "3.0.
|
4
|
+
"version": "3.0.1",
|
5
5
|
"description": "Istanbul coverage provider for Vitest",
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
7
7
|
"license": "MIT",
|
@@ -37,7 +37,7 @@
|
|
37
37
|
"dist"
|
38
38
|
],
|
39
39
|
"peerDependencies": {
|
40
|
-
"vitest": "3.0.
|
40
|
+
"vitest": "3.0.1"
|
41
41
|
},
|
42
42
|
"dependencies": {
|
43
43
|
"@istanbuljs/schema": "^0.1.3",
|
@@ -59,8 +59,8 @@
|
|
59
59
|
"@types/istanbul-lib-source-maps": "^4.0.4",
|
60
60
|
"@types/istanbul-reports": "^3.0.4",
|
61
61
|
"@types/test-exclude": "^6.0.2",
|
62
|
-
"pathe": "^2.0.
|
63
|
-
"vitest": "3.0.
|
62
|
+
"pathe": "^2.0.1",
|
63
|
+
"vitest": "3.0.1"
|
64
64
|
},
|
65
65
|
"scripts": {
|
66
66
|
"build": "rimraf dist && rollup -c",
|