apex-mutation-testing 1.5.2 → 1.6.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.
@@ -193,5 +193,5 @@
193
193
  ]
194
194
  }
195
195
  },
196
- "version": "1.5.2"
196
+ "version": "1.6.1"
197
197
  }
package/package.json CHANGED
@@ -1,33 +1,34 @@
1
1
  {
2
2
  "name": "apex-mutation-testing",
3
3
  "description": "Apex mutation testing plugin",
4
- "version": "1.5.2",
4
+ "version": "1.6.1",
5
5
  "dependencies": {
6
- "@oclif/core": "^4.10.3",
7
- "@salesforce/apex-node": "^8.4.17",
8
- "@salesforce/core": "^8.27.1",
6
+ "@oclif/core": "^4.10.5",
7
+ "@salesforce/apex-node": "^8.4.21",
8
+ "@salesforce/core": "^8.28.3",
9
9
  "@salesforce/sf-plugins-core": "^12.2.6",
10
- "@stryker-mutator/core": "^9.6.0",
10
+ "@stryker-mutator/core": "^9.6.1",
11
11
  "antlr4ts": "^0.5.0-alpha.4",
12
12
  "apex-parser": "^2.17.0",
13
13
  "async": "^3.2.6",
14
- "re2": "^1.23.3"
14
+ "mutation-testing-elements": "^3.7.3",
15
+ "re2": "^1.24.0"
15
16
  },
16
17
  "devDependencies": {
17
- "@biomejs/biome": "2.4.9",
18
+ "@biomejs/biome": "2.4.12",
18
19
  "@commitlint/config-conventional": "^20.5.0",
19
- "@oclif/plugin-help": "^6.2.41",
20
+ "@oclif/plugin-help": "^6.2.44",
20
21
  "@salesforce/dev-config": "^4.3.3",
21
- "@stryker-mutator/vitest-runner": "^9.6.0",
22
+ "@stryker-mutator/vitest-runner": "^9.6.1",
22
23
  "@types/async": "^3.2.25",
23
- "@vitest/coverage-v8": "^4.1.2",
24
+ "@vitest/coverage-v8": "^4.1.4",
24
25
  "husky": "^9.1.7",
25
- "knip": "^6.1.0",
26
- "oclif": "^4.22.96",
26
+ "knip": "^6.4.1",
27
+ "oclif": "^4.23.0",
27
28
  "shx": "^0.4.0",
28
29
  "tslib": "^2.8.1",
29
- "typescript": "^6.0.2",
30
- "vitest": "^4.1.2",
30
+ "typescript": "^6.0.3",
31
+ "vitest": "^4.1.4",
31
32
  "wireit": "^0.14.12"
32
33
  },
33
34
  "engines": {
@@ -85,6 +86,7 @@
85
86
  "test:build": "wireit",
86
87
  "test:mutation": "stryker run",
87
88
  "test:nut": "wireit",
89
+ "test:perf": "wireit",
88
90
  "test:unit": "wireit",
89
91
  "test": "wireit"
90
92
  },
@@ -99,7 +101,7 @@
99
101
  ]
100
102
  },
101
103
  "clean": {
102
- "command": "shx rm -rf 'reports/*' .nyc_output oclif.manifest.json package.tgz 'sfdx-git-delta-*.tgz' 'stderr*.txt' 'stdout*.txt' '.stryker-tmp/*' perf-result.txt",
104
+ "command": "shx rm -rf 'reports/*' .nyc_output oclif.manifest.json package.tgz 'stderr*.txt' 'stdout*.txt' '.stryker-tmp/*' perf-raw.json perf-runtime.json perf-memory.json perf-preview.html",
103
105
  "files": [
104
106
  "lib",
105
107
  "reports/*",
@@ -232,6 +234,23 @@
232
234
  "build"
233
235
  ]
234
236
  },
237
+ "test:perf": {
238
+ "command": "node --expose-gc ./node_modules/.bin/vitest bench --config vitest.config.perf.ts && node test/perf/formatResults.mjs",
239
+ "files": [
240
+ "src/**/*.ts",
241
+ "test/perf/**",
242
+ "**/tsconfig.json",
243
+ "vitest.config.perf.ts"
244
+ ],
245
+ "output": [
246
+ "perf-raw.json",
247
+ "perf-runtime.json",
248
+ "perf-memory.json"
249
+ ],
250
+ "dependencies": [
251
+ "compile"
252
+ ]
253
+ },
235
254
  "test:unit": {
236
255
  "command": "vitest run --coverage",
237
256
  "files": [