@teamscale/coverage-collector 0.1.0-beta.6 → 0.1.0-beta.8

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.1.0-beta.6",
3
+ "version": "0.1.0-beta.8",
4
4
  "description": "Collector for JavaScript code coverage information",
5
5
  "main": "dist/src/main.js",
6
6
  "bin": "dist/src/main.js",
@@ -22,41 +22,41 @@
22
22
  "dist/**/*"
23
23
  ],
24
24
  "dependencies": {
25
- "@cqse/commons": "0.1.0-beta.5",
25
+ "@cqse/commons": "0.1.0-beta.7",
26
26
  "argparse": "^2.0.1",
27
27
  "async": "^3.2.5",
28
- "axios": "^1.6.7",
28
+ "axios": "^1.6.8",
29
29
  "bunyan": "^1.8.15",
30
30
  "date-and-time": "^3.1.1",
31
31
  "dotenv": "^16.4.5",
32
- "express": "^4.18.2",
32
+ "express": "^4.19.2",
33
33
  "form-data": "^4.0.0",
34
34
  "mkdirp": "^3.0.1",
35
35
  "rxjs": "^7.8.1",
36
36
  "source-map": "^0.7.4",
37
- "tmp": "^0.2.1",
37
+ "tmp": "^0.2.3",
38
38
  "typescript-optional": "^2.0.1",
39
39
  "ws": "^8.16.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@babel/core": "^7.23.9",
43
- "@babel/preset-env": "^7.23.9",
44
- "@types/argparse": "^2.0.14",
42
+ "@babel/core": "^7.24.4",
43
+ "@babel/preset-env": "^7.24.4",
44
+ "@types/argparse": "^2.0.16",
45
45
  "@types/async": "^3.2.24",
46
46
  "@types/bunyan": "^1.8.11",
47
47
  "@types/express": "^4.17.21",
48
48
  "@types/jest": "^29.5.12",
49
- "@types/node": "^20.11.19",
49
+ "@types/node": "^20.12.6",
50
50
  "@types/tmp": "^0.2.6",
51
51
  "@types/ws": "^8.5.10",
52
52
  "babel-jest": "^29.7.0",
53
- "esbuild": "^0.20.1",
53
+ "esbuild": "^0.20.2",
54
54
  "jest": "^29.7.0",
55
- "mockttp": "^3.10.1",
55
+ "mockttp": "^3.10.2",
56
56
  "rimraf": "^5.0.5",
57
57
  "ts-jest": "^29.1.2",
58
58
  "ts-node": "^10.9.2",
59
- "typescript": "^5.3.3"
59
+ "typescript": "^5.4.4"
60
60
  },
61
61
  "publishConfig": {
62
62
  "access": "public"
package/dist/src/App.js CHANGED
@@ -175,7 +175,7 @@ class App {
175
175
  try {
176
176
  // 1. Write coverage to a file
177
177
  const [coverageFile, lines] = storage.dumpToSimpleCoverageFile(config.dump_to_folder, new Date());
178
- logger.info(`Dumped ${lines} lines of coverage to ${coverageFile}.`);
178
+ logger.debug(`Dumped ${lines} lines of coverage to ${coverageFile}.`);
179
179
  // 2. Upload to Teamscale or Artifactory if configured
180
180
  if (config.teamscale_server_url || config.artifactory_server_url) {
181
181
  await this.uploadCoverage(config, coverageFile, lines, logger);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamscale/coverage-collector",
3
- "version": "0.1.0-beta.6",
3
+ "version": "0.1.0-beta.8",
4
4
  "description": "Collector for JavaScript code coverage information",
5
5
  "main": "dist/src/main.js",
6
6
  "bin": "dist/src/main.js",
@@ -15,41 +15,41 @@
15
15
  "dist/**/*"
16
16
  ],
17
17
  "dependencies": {
18
- "@cqse/commons": "0.1.0-beta.5",
18
+ "@cqse/commons": "0.1.0-beta.7",
19
19
  "argparse": "^2.0.1",
20
20
  "async": "^3.2.5",
21
- "axios": "^1.6.7",
21
+ "axios": "^1.6.8",
22
22
  "bunyan": "^1.8.15",
23
23
  "date-and-time": "^3.1.1",
24
24
  "dotenv": "^16.4.5",
25
- "express": "^4.18.2",
25
+ "express": "^4.19.2",
26
26
  "form-data": "^4.0.0",
27
27
  "mkdirp": "^3.0.1",
28
28
  "rxjs": "^7.8.1",
29
29
  "source-map": "^0.7.4",
30
- "tmp": "^0.2.1",
30
+ "tmp": "^0.2.3",
31
31
  "typescript-optional": "^2.0.1",
32
32
  "ws": "^8.16.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@babel/core": "^7.23.9",
36
- "@babel/preset-env": "^7.23.9",
37
- "@types/argparse": "^2.0.14",
35
+ "@babel/core": "^7.24.4",
36
+ "@babel/preset-env": "^7.24.4",
37
+ "@types/argparse": "^2.0.16",
38
38
  "@types/async": "^3.2.24",
39
39
  "@types/bunyan": "^1.8.11",
40
40
  "@types/express": "^4.17.21",
41
41
  "@types/jest": "^29.5.12",
42
- "@types/node": "^20.11.19",
42
+ "@types/node": "^20.12.6",
43
43
  "@types/tmp": "^0.2.6",
44
44
  "@types/ws": "^8.5.10",
45
45
  "babel-jest": "^29.7.0",
46
- "esbuild": "^0.20.1",
46
+ "esbuild": "^0.20.2",
47
47
  "jest": "^29.7.0",
48
- "mockttp": "^3.10.1",
48
+ "mockttp": "^3.10.2",
49
49
  "rimraf": "^5.0.5",
50
50
  "ts-jest": "^29.1.2",
51
51
  "ts-node": "^10.9.2",
52
- "typescript": "^5.3.3"
52
+ "typescript": "^5.4.4"
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"