@systemfsoftware/stryker-js-cli 3.0.1 → 3.2.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 +102 -0
- package/dist/main.mjs +957 -834
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/stryker-js-cli",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
|
|
@@ -16,18 +16,15 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@effect/platform-node": "^4.0.0-rc.111",
|
|
18
18
|
"@effect/platform-node-shared": "^4.0.0-rc.111",
|
|
19
|
-
"effect": "4.0.0-rc.111",
|
|
20
|
-
"
|
|
21
|
-
"@systemfsoftware/stryker-js-
|
|
22
|
-
"@systemfsoftware/stryker-js-
|
|
23
|
-
"@systemfsoftware/stryker-js-mutation-report": "^1.2.8",
|
|
24
|
-
"@systemfsoftware/stryker-js-util": "^0.1.0",
|
|
19
|
+
"effect": "^4.0.0-rc.111",
|
|
20
|
+
"@systemfsoftware/stryker-js-mutation-report": "^2.0.0",
|
|
21
|
+
"@systemfsoftware/stryker-js-mutation-run": "^5.0.0",
|
|
22
|
+
"@systemfsoftware/stryker-js-plugin-api": "^3.0.0",
|
|
25
23
|
"@systemfsoftware/effect-cell-types": "^4.0.0"
|
|
26
24
|
},
|
|
27
25
|
"devDependencies": {
|
|
28
26
|
"@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
|
|
29
27
|
"@types/node": "^24",
|
|
30
|
-
"@types/semver": "7.7.1",
|
|
31
28
|
"@vitest/coverage-v8": "^4",
|
|
32
29
|
"oxlint": "^1.77.0",
|
|
33
30
|
"rimraf": "^6.1.3",
|
|
@@ -36,14 +33,15 @@
|
|
|
36
33
|
"vite-tsconfig-paths": "^6.1.1",
|
|
37
34
|
"vitest": "^4.1.10",
|
|
38
35
|
"@systemfsoftware/effect-gherkin-spec": "^2.0.1",
|
|
39
|
-
"@systemfsoftware/effect-schema-
|
|
36
|
+
"@systemfsoftware/effect-schema-refutation-vite": "^0.1.0",
|
|
37
|
+
"@systemfsoftware/effect-schema-law": "^1.0.0",
|
|
40
38
|
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
41
|
-
"@systemfsoftware/effect-schema-vite": "^
|
|
42
|
-
"@systemfsoftware/
|
|
39
|
+
"@systemfsoftware/effect-schema-vite": "^2.0.0",
|
|
40
|
+
"@systemfsoftware/oxlint-plugin-cell-vocabulary": "^1.2.1",
|
|
43
41
|
"@systemfsoftware/oxlint-plugin-effect-entrypoint": "^1.0.5",
|
|
44
|
-
"@systemfsoftware/
|
|
45
|
-
"@systemfsoftware/oxlint-plugin-test-placement": "^3.
|
|
46
|
-
"@systemfsoftware/
|
|
42
|
+
"@systemfsoftware/tsconfig": "^1.3.3",
|
|
43
|
+
"@systemfsoftware/oxlint-plugin-test-placement": "^3.2.0",
|
|
44
|
+
"@systemfsoftware/vitest-config": "^0.1.0"
|
|
47
45
|
},
|
|
48
46
|
"engines": {
|
|
49
47
|
"node": ">=20.0.0"
|
|
@@ -67,6 +65,8 @@
|
|
|
67
65
|
"test:contract": "vitest run --config vitest.contract.config.ts",
|
|
68
66
|
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --format=${f:-default}",
|
|
69
67
|
"mutation": "stryker run",
|
|
70
|
-
"mutation:full": "stryker run --force"
|
|
68
|
+
"mutation:full": "stryker run --force",
|
|
69
|
+
"api:check": "echo 'no API report for CLI (dts: false)' && exit 0",
|
|
70
|
+
"api:update": "echo 'no API report for CLI (dts: false)' && exit 0"
|
|
71
71
|
}
|
|
72
72
|
}
|