apex-code-coverage-transformer 2.11.8 → 2.12.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.
@@ -59,7 +59,8 @@
59
59
  "cobertura",
60
60
  "clover",
61
61
  "lcovonly",
62
- "jacoco"
62
+ "jacoco",
63
+ "json"
63
64
  ],
64
65
  "type": "option"
65
66
  },
@@ -96,5 +97,5 @@
96
97
  ]
97
98
  }
98
99
  },
99
- "version": "2.11.8"
100
+ "version": "2.12.1"
100
101
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "apex-code-coverage-transformer",
3
- "description": "Transform Salesforce Apex code coverage JSONs created during deployments and test runs into other formats accepted by SonarQube, GitHub, GitLab, Azure, Bitbucket, etc.",
4
- "version": "2.11.8",
3
+ "description": "Transform Salesforce Apex code coverage JSONs into other formats accepted by SonarQube, GitHub, GitLab, Azure, Bitbucket, etc.",
4
+ "version": "2.12.1",
5
5
  "dependencies": {
6
6
  "@oclif/core": "^4.3.0",
7
7
  "@salesforce/core": "^8.11.4",
8
- "@salesforce/sf-plugins-core": "^12.2.1",
8
+ "@salesforce/sf-plugins-core": "^12.2.2",
9
9
  "async": "^3.2.6",
10
10
  "xmlbuilder2": "^3.1.1"
11
11
  },
@@ -16,13 +16,15 @@
16
16
  "@salesforce/cli-plugins-testkit": "^5.3.39",
17
17
  "@salesforce/dev-scripts": "^10.2.11",
18
18
  "@types/async": "^3.2.24",
19
- "@types/mocha": "^10.0.10",
19
+ "@types/jest": "^29.5.14",
20
20
  "@types/node": "18",
21
21
  "eslint-plugin-sf-plugin": "^1.20.21",
22
22
  "husky": "^9.1.7",
23
- "mocha": "^11.5.0",
23
+ "jest": "^29.7.0",
24
24
  "oclif": "^4.17.46",
25
25
  "shx": "0.4.0",
26
+ "ts-jest": "^29.3.4",
27
+ "ts-jest-mock-import-meta": "^1.3.0",
26
28
  "ts-node": "^10.9.2",
27
29
  "typescript": "^5.8.3",
28
30
  "wireit": "^0.14.12"
@@ -65,7 +67,8 @@
65
67
  "bitbucket",
66
68
  "jacoco",
67
69
  "lcov",
68
- "json2xml"
70
+ "json2xml",
71
+ "istanbul"
69
72
  ],
70
73
  "license": "MIT",
71
74
  "oclif": {
@@ -99,7 +102,7 @@
99
102
  "prepack": "sf-prepack",
100
103
  "prepare": "husky install",
101
104
  "test": "wireit",
102
- "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
105
+ "test:nuts": "oclif manifest && jest --testMatch \"**/*.nut.ts\"",
103
106
  "test:only": "wireit",
104
107
  "version": "oclif readme"
105
108
  },
@@ -164,7 +167,7 @@
164
167
  ]
165
168
  },
166
169
  "test:only": {
167
- "command": "nyc mocha \"test/**/*.test.ts\"",
170
+ "command": "jest --coverage",
168
171
  "env": {
169
172
  "FORCE_COLOR": "2"
170
173
  },