@teamscale/coverage-collector 0.0.1-beta.37 → 0.0.1-beta.40

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.37",
3
+ "version": "0.0.1-beta.40",
4
4
  "description": "Collector for JavaScript code coverage information",
5
5
  "main": "dist/src/main.js",
6
6
  "bin": "dist/src/main.js",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@cqse/commons": "^0.0.1-beta.26",
26
26
  "argparse": "^2.0.1",
27
- "async": "^3.2.3",
27
+ "async": "^3.2.4",
28
28
  "axios": "^0.24.0",
29
29
  "bunyan": "^1.8.15",
30
30
  "dotenv": "^14.1.0",
@@ -43,8 +43,10 @@ export declare class Session {
43
43
  * This method also conducts the mapping based on the source map.
44
44
  *
45
45
  * @param fileId - The identifier of the instrumented bundle (file).
46
- * @param line - The line number within the bundle.
47
- * @param column - The column within the bundle.
46
+ * @param startLine - The line number within the bundle the range starts.
47
+ * @param startColumn - The column in the given `startLine` on that the range starts (inclusive).
48
+ * @param endLine - The line number within the bundle the range ends.
49
+ * @param endColumn - The column in the given `startLine` on that the range ends (inclusive).
48
50
  */
49
51
  putCoverage(fileId: string, startLine: number, startColumn: number, endLine: number, endColumn: number): void;
50
52
  /**
@@ -51,8 +51,10 @@ class Session {
51
51
  * This method also conducts the mapping based on the source map.
52
52
  *
53
53
  * @param fileId - The identifier of the instrumented bundle (file).
54
- * @param line - The line number within the bundle.
55
- * @param column - The column within the bundle.
54
+ * @param startLine - The line number within the bundle the range starts.
55
+ * @param startColumn - The column in the given `startLine` on that the range starts (inclusive).
56
+ * @param endLine - The line number within the bundle the range ends.
57
+ * @param endColumn - The column in the given `startLine` on that the range ends (inclusive).
56
58
  */
57
59
  putCoverage(fileId, startLine, startColumn, endLine, endColumn) {
58
60
  var _a, _b;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamscale/coverage-collector",
3
- "version": "0.0.1-beta.37",
3
+ "version": "0.0.1-beta.40",
4
4
  "description": "Collector for JavaScript code coverage information",
5
5
  "main": "dist/src/main.js",
6
6
  "bin": "dist/src/main.js",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@cqse/commons": "^0.0.1-beta.26",
26
26
  "argparse": "^2.0.1",
27
- "async": "^3.2.3",
27
+ "async": "^3.2.4",
28
28
  "axios": "^0.24.0",
29
29
  "bunyan": "^1.8.15",
30
30
  "dotenv": "^14.1.0",