@systemfsoftware/stryker-js-vitest-runner 5.0.0 → 6.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 +49 -0
- package/README.md +59 -16
- package/dist/index.d.mts +0 -8
- package/dist/index.mjs +1 -47
- package/dist/main.mjs +924 -985
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/stryker-js-vitest-runner",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/systemfsoftware/stryker-js-effect.git",
|
|
@@ -49,6 +49,12 @@
|
|
|
49
49
|
"@systemfsoftware/all": "^2",
|
|
50
50
|
"@systemfsoftware/arethetypeswrong-cli": "^4",
|
|
51
51
|
"@systemfsoftware/effect-gherkin-spec": "^4",
|
|
52
|
+
"@systemfsoftware/stryker-ignorer-effect-schema-declarations": "latest",
|
|
53
|
+
"@systemfsoftware/stryker-ignorer-in-source-vitest-block": "latest",
|
|
54
|
+
"@systemfsoftware/stryker-js": "latest",
|
|
55
|
+
"@systemfsoftware/stryker-js-typescript-checker": "latest",
|
|
56
|
+
"@systemfsoftware/stryker-js-vitest-runner": "latest",
|
|
57
|
+
"@systemfsoftware/stryker-test-contribution": "latest",
|
|
52
58
|
"@systemfsoftware/tsconfig": "^1",
|
|
53
59
|
"@types/node": "^24",
|
|
54
60
|
"@vitest/browser-playwright": "^4",
|
|
@@ -59,9 +65,10 @@
|
|
|
59
65
|
"tsdown": "^0.23.0",
|
|
60
66
|
"typescript": "^7",
|
|
61
67
|
"vitest": "^4",
|
|
62
|
-
"@systemfsoftware/stryker-
|
|
63
|
-
"@systemfsoftware/stryker-js-
|
|
64
|
-
"@systemfsoftware/stryker-js-plugin-
|
|
68
|
+
"@systemfsoftware/stryker-config": "^0.1.0",
|
|
69
|
+
"@systemfsoftware/stryker-js-instrumenter": "^7.0.0",
|
|
70
|
+
"@systemfsoftware/stryker-js-plugin-interface": "^6.0.0",
|
|
71
|
+
"@systemfsoftware/stryker-js-plugin-runtime": "^5.0.1",
|
|
65
72
|
"@systemfsoftware/tsdown-config": "^0.1.0",
|
|
66
73
|
"@systemfsoftware/vitest-config": "^0.1.0"
|
|
67
74
|
},
|
|
@@ -101,6 +108,7 @@
|
|
|
101
108
|
"typecheck": "tsc --noEmit --incremental && tsc -p tsconfig.node.json --noEmit",
|
|
102
109
|
"attw": "attw --pack .",
|
|
103
110
|
"test": "vitest run",
|
|
111
|
+
"mutation": "stryker run",
|
|
104
112
|
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --format=${f:-default}",
|
|
105
113
|
"api:check": "api-extractor run",
|
|
106
114
|
"api:update": "api-extractor run --local"
|