@teamscale/coverage-collector 0.0.1-beta.53 → 0.0.1-beta.54
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamscale/coverage-collector",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.54",
|
|
4
4
|
"description": "Collector for JavaScript code coverage information",
|
|
5
5
|
"main": "dist/src/main.js",
|
|
6
6
|
"bin": "dist/src/main.js",
|
|
@@ -39,24 +39,24 @@
|
|
|
39
39
|
"ws": "^7.4.5"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@babel/core": "^7.
|
|
43
|
-
"@babel/preset-env": "^7.
|
|
42
|
+
"@babel/core": "^7.21.8",
|
|
43
|
+
"@babel/preset-env": "^7.21.5",
|
|
44
44
|
"@types/argparse": "^2.0.5",
|
|
45
45
|
"@types/async": "^3.2.6",
|
|
46
46
|
"@types/bunyan": "^1.8.8",
|
|
47
47
|
"@types/express": "^4.17.13",
|
|
48
|
-
"@types/jest": "^
|
|
48
|
+
"@types/jest": "^29.5.1",
|
|
49
49
|
"@types/mkdirp": "^1.0.2",
|
|
50
50
|
"@types/node": "^15.0.1",
|
|
51
51
|
"@types/source-map": "^0.5.7",
|
|
52
52
|
"@types/tmp": "^0.2.3",
|
|
53
53
|
"@types/ws": "^7.4.2",
|
|
54
|
-
"babel-jest": "^
|
|
54
|
+
"babel-jest": "^29.5.0",
|
|
55
55
|
"esbuild": "^0.13.4",
|
|
56
|
-
"jest": "^
|
|
57
|
-
"mockttp": "^3.7.
|
|
56
|
+
"jest": "^29.5.0",
|
|
57
|
+
"mockttp": "^3.7.5",
|
|
58
58
|
"rimraf": "^3.0.2",
|
|
59
|
-
"ts-jest": "^
|
|
59
|
+
"ts-jest": "^29.1.0",
|
|
60
60
|
"ts-node": "^10.2.1",
|
|
61
61
|
"typescript": "^4.4.3"
|
|
62
62
|
},
|
|
@@ -6,7 +6,7 @@ import Logger from 'bunyan';
|
|
|
6
6
|
* Coverage information that has not been mapped back to the
|
|
7
7
|
* original code using a source map.
|
|
8
8
|
*/
|
|
9
|
-
export
|
|
9
|
+
export type UnmappedCoverage = {
|
|
10
10
|
fileId: string;
|
|
11
11
|
startLine: number;
|
|
12
12
|
startColumn: number;
|
|
@@ -5,7 +5,7 @@ import { ArgumentParser } from 'argparse';
|
|
|
5
5
|
* ATTENTION: We use snake_case here because ArgParse creates
|
|
6
6
|
* the parameters that way---as in Python from which ArgParse stems.
|
|
7
7
|
*/
|
|
8
|
-
export
|
|
8
|
+
export type ConfigParameters = {
|
|
9
9
|
dump_to_folder: string;
|
|
10
10
|
log_to_file: string;
|
|
11
11
|
keep_coverage_files: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamscale/coverage-collector",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.54",
|
|
4
4
|
"description": "Collector for JavaScript code coverage information",
|
|
5
5
|
"main": "dist/src/main.js",
|
|
6
6
|
"bin": "dist/src/main.js",
|
|
@@ -39,24 +39,24 @@
|
|
|
39
39
|
"ws": "^7.4.5"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@babel/core": "^7.
|
|
43
|
-
"@babel/preset-env": "^7.
|
|
42
|
+
"@babel/core": "^7.21.8",
|
|
43
|
+
"@babel/preset-env": "^7.21.5",
|
|
44
44
|
"@types/argparse": "^2.0.5",
|
|
45
45
|
"@types/async": "^3.2.6",
|
|
46
46
|
"@types/bunyan": "^1.8.8",
|
|
47
47
|
"@types/express": "^4.17.13",
|
|
48
|
-
"@types/jest": "^
|
|
48
|
+
"@types/jest": "^29.5.1",
|
|
49
49
|
"@types/mkdirp": "^1.0.2",
|
|
50
50
|
"@types/node": "^15.0.1",
|
|
51
51
|
"@types/source-map": "^0.5.7",
|
|
52
52
|
"@types/tmp": "^0.2.3",
|
|
53
53
|
"@types/ws": "^7.4.2",
|
|
54
|
-
"babel-jest": "^
|
|
54
|
+
"babel-jest": "^29.5.0",
|
|
55
55
|
"esbuild": "^0.13.4",
|
|
56
|
-
"jest": "^
|
|
57
|
-
"mockttp": "^3.7.
|
|
56
|
+
"jest": "^29.5.0",
|
|
57
|
+
"mockttp": "^3.7.5",
|
|
58
58
|
"rimraf": "^3.0.2",
|
|
59
|
-
"ts-jest": "^
|
|
59
|
+
"ts-jest": "^29.1.0",
|
|
60
60
|
"ts-node": "^10.2.1",
|
|
61
61
|
"typescript": "^4.4.3"
|
|
62
62
|
},
|