@systemfsoftware/stryker-js-cli 4.0.1 → 4.0.2
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 +6 -0
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @systemfsoftware/stryker-js-cli
|
|
2
2
|
|
|
3
|
+
## 4.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Re-published against the oxc-based instrumenter: workspace dependency ranges move to the new instrumenter major; no package's own behavior changes in this release.
|
|
8
|
+
|
|
3
9
|
## 4.0.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/stryker-js-cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"@effect/platform-node-shared": "^4.0.0-rc.112",
|
|
19
19
|
"@noble/hashes": "1.8.0",
|
|
20
20
|
"effect": "^4.0.0-rc.112",
|
|
21
|
-
"@systemfsoftware/effect-cell-types": "^5.0.
|
|
22
|
-
"@systemfsoftware/stryker-js": "^0.1.
|
|
23
|
-
"@systemfsoftware/stryker-js
|
|
24
|
-
"@systemfsoftware/stryker-js-platform-node": "^0.1.
|
|
21
|
+
"@systemfsoftware/effect-cell-types": "^5.0.2",
|
|
22
|
+
"@systemfsoftware/stryker-js-html-reporter": "^0.1.1",
|
|
23
|
+
"@systemfsoftware/stryker-js": "^0.1.1",
|
|
24
|
+
"@systemfsoftware/stryker-js-platform-node": "^0.1.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
|
|
@@ -32,16 +32,17 @@
|
|
|
32
32
|
"testcontainers": "^12.1.0",
|
|
33
33
|
"tsdown": "^0.22.14",
|
|
34
34
|
"vite-tsconfig-paths": "^6.1.1",
|
|
35
|
-
"vitest": "^4
|
|
36
|
-
"@systemfsoftware/
|
|
37
|
-
"@systemfsoftware/effect-
|
|
38
|
-
"@systemfsoftware/
|
|
35
|
+
"vitest": "^4",
|
|
36
|
+
"@systemfsoftware/all": "^1.0.2",
|
|
37
|
+
"@systemfsoftware/effect-gherkin-spec": "^4.0.0",
|
|
38
|
+
"@systemfsoftware/effect-schema-law": "^2.0.1",
|
|
39
|
+
"@systemfsoftware/effect-schema-vite": "^2.0.2",
|
|
40
|
+
"@systemfsoftware/stryker-js-typescript-checker": "^3.0.2",
|
|
41
|
+
"@systemfsoftware/stryker-js-vitest-runner": "^2.0.2",
|
|
42
|
+
"@systemfsoftware/stryker-test-contribution": "^1.1.1",
|
|
43
|
+
"@systemfsoftware/stryker-plugins": "^2.0.0",
|
|
39
44
|
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
40
|
-
"@systemfsoftware/effect-schema-vite": "^2.0.1",
|
|
41
|
-
"@systemfsoftware/oxlint-plugin-cell-vocabulary": "^1.2.3",
|
|
42
|
-
"@systemfsoftware/oxlint-plugin-test-placement": "^3.2.1",
|
|
43
45
|
"@systemfsoftware/tsconfig": "^1.3.3",
|
|
44
|
-
"@systemfsoftware/oxlint-plugin-effect-entrypoint": "^1.0.6",
|
|
45
46
|
"@systemfsoftware/vitest-config": "^0.1.0"
|
|
46
47
|
},
|
|
47
48
|
"engines": {
|
|
@@ -65,8 +66,8 @@
|
|
|
65
66
|
"test": "vitest run",
|
|
66
67
|
"test:contract": "vitest run --config vitest.contract.config.ts",
|
|
67
68
|
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --format=${f:-default}",
|
|
68
|
-
"mutation": "
|
|
69
|
-
"mutation:full": "
|
|
69
|
+
"mutation": "node ./dist/main.mjs run",
|
|
70
|
+
"mutation:full": "node ./dist/main.mjs run --force",
|
|
70
71
|
"api:check": "echo 'no API report for CLI (dts: false)' && exit 0",
|
|
71
72
|
"api:update": "echo 'no API report for CLI (dts: false)' && exit 0"
|
|
72
73
|
}
|