@systemfsoftware/stryker-js-vitest-runner 6.0.0 → 7.0.0
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/CHANGELOG.md +15 -0
- package/dist/main.mjs +5039 -1158
- package/dist/src-js-DRK8boNV.mjs +1009 -0
- package/dist/stryker-setup.mjs +2 -9
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @systemfsoftware/stryker-js-vitest-runner
|
|
2
2
|
|
|
3
|
+
## 7.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- The runner now requires vitest 4.1 or later, and the peer dependency says so:
|
|
8
|
+
`vitest >=4.1.0`.
|
|
9
|
+
|
|
10
|
+
Upgrade vitest to 4.1 or later before upgrading this package. Projects that must
|
|
11
|
+
stay below 4.1 should stay on the previous release.
|
|
12
|
+
|
|
13
|
+
The published bundle now also inlines `oxc-parser` and `@eslint-community/regexpp`
|
|
14
|
+
so they ship inside the runner's install. Consumers that previously resolved those
|
|
15
|
+
packages as transitive dependencies from another tool should now take them from
|
|
16
|
+
the runner's published bundle.
|
|
17
|
+
|
|
3
18
|
## 6.0.0
|
|
4
19
|
|
|
5
20
|
### Major Changes
|