@systemfsoftware/stryker-js-vitest-runner 4.0.3 → 5.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 +28 -0
- package/README.md +2 -2
- package/dist/execAsync-CUNMu62l.mjs +10 -0
- package/dist/execAsync-zBkwnfr9.mjs +10 -0
- package/dist/getMachineId-bsd-Ci7jvBhd.mjs +26 -0
- package/dist/getMachineId-bsd-DEwG9Ywj.mjs +26 -0
- package/dist/getMachineId-darwin-K9sCO4zL.mjs +23 -0
- package/dist/getMachineId-darwin-s7YULPyU.mjs +23 -0
- package/dist/getMachineId-linux-B4KmiJGj.mjs +19 -0
- package/dist/getMachineId-linux-NPalN4Yq.mjs +19 -0
- package/dist/getMachineId-unsupported-DpGC7koj.mjs +14 -0
- package/dist/getMachineId-unsupported-Dqj1BWmV.mjs +14 -0
- package/dist/getMachineId-win-B9REJgj2.mjs +25 -0
- package/dist/getMachineId-win-tvSIkbRI.mjs +25 -0
- package/dist/index.d.mts +15 -18
- package/dist/index.mjs +18 -1003
- package/dist/main.d.mts +1 -0
- package/dist/main.mjs +51892 -0
- package/package.json +57 -19
package/package.json
CHANGED
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/stryker-js-vitest-runner",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
|
-
"url": "git+https://github.com/systemfsoftware/
|
|
7
|
-
"directory": "packages/stryker-js
|
|
6
|
+
"url": "git+https://github.com/systemfsoftware/stryker-js-effect.git",
|
|
7
|
+
"directory": "packages/stryker-js-vitest-runner"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://github.com/systemfsoftware/
|
|
10
|
-
"bugs": "https://github.com/systemfsoftware/
|
|
9
|
+
"homepage": "https://github.com/systemfsoftware/stryker-js-effect",
|
|
10
|
+
"bugs": "https://github.com/systemfsoftware/stryker-js-effect/issues",
|
|
11
11
|
"description": "Vitest test-runner plugin for Stryker",
|
|
12
12
|
"type": "module",
|
|
13
13
|
"files": [
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"exports": {
|
|
17
|
-
".":
|
|
18
|
-
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.mts",
|
|
19
|
+
"default": "./dist/index.mjs"
|
|
20
|
+
},
|
|
19
21
|
"./package.json": "./package.json"
|
|
20
22
|
},
|
|
21
23
|
"license": "Apache-2.0",
|
|
22
24
|
"engines": {
|
|
23
|
-
"node": ">=
|
|
25
|
+
"node": ">=22.18.0"
|
|
24
26
|
},
|
|
25
27
|
"keywords": [
|
|
26
28
|
"stryker",
|
|
@@ -31,8 +33,10 @@
|
|
|
31
33
|
"coverageAnalysis": "perTest"
|
|
32
34
|
},
|
|
33
35
|
"dependencies": {
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
36
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.208.0",
|
|
37
|
+
"@opentelemetry/sdk-node": "^0.208.0",
|
|
38
|
+
"@opentelemetry/sdk-trace-base": "^2.2.0",
|
|
39
|
+
"@systemfsoftware/effect-cell-types": "^8"
|
|
36
40
|
},
|
|
37
41
|
"peerDependencies": {
|
|
38
42
|
"effect": "4.0.0-rc.112",
|
|
@@ -41,30 +45,64 @@
|
|
|
41
45
|
"devDependencies": {
|
|
42
46
|
"@effect/platform-node": "4.0.0-rc.112",
|
|
43
47
|
"@effect/vitest": "4.0.0-rc.112",
|
|
44
|
-
"@
|
|
48
|
+
"@microsoft/api-extractor": "^7",
|
|
49
|
+
"@systemfsoftware/all": "^2",
|
|
50
|
+
"@systemfsoftware/arethetypeswrong-cli": "^4",
|
|
51
|
+
"@systemfsoftware/effect-gherkin-spec": "^4",
|
|
52
|
+
"@systemfsoftware/tsconfig": "^1",
|
|
45
53
|
"@types/node": "^24",
|
|
46
54
|
"@vitest/browser-playwright": "^4",
|
|
55
|
+
"concurrently": "^10",
|
|
47
56
|
"effect": "4.0.0-rc.112",
|
|
48
|
-
"oxlint": "^1
|
|
57
|
+
"oxlint": "^1",
|
|
49
58
|
"rimraf": "^6.1.3",
|
|
50
|
-
"tsdown": "^0.
|
|
59
|
+
"tsdown": "^0.23.0",
|
|
51
60
|
"typescript": "^7",
|
|
52
61
|
"vitest": "^4",
|
|
53
|
-
"@systemfsoftware/
|
|
54
|
-
"@systemfsoftware/
|
|
55
|
-
"@systemfsoftware/
|
|
56
|
-
"@systemfsoftware/
|
|
62
|
+
"@systemfsoftware/stryker-js-language": "^5.0.0",
|
|
63
|
+
"@systemfsoftware/stryker-js-plugin-interface": "^5.0.0",
|
|
64
|
+
"@systemfsoftware/stryker-js-plugin-runtime": "^5.0.0",
|
|
65
|
+
"@systemfsoftware/tsdown-config": "^0.1.0",
|
|
57
66
|
"@systemfsoftware/vitest-config": "^0.1.0"
|
|
58
67
|
},
|
|
59
68
|
"publishConfig": {
|
|
60
69
|
"provenance": true
|
|
61
70
|
},
|
|
71
|
+
"inlinedDependencies": {
|
|
72
|
+
"@effect/opentelemetry": "4.0.0-rc.112",
|
|
73
|
+
"@effect/platform-node": "4.0.0-rc.112",
|
|
74
|
+
"@effect/platform-node-shared": "4.0.0-rc.112",
|
|
75
|
+
"@opentelemetry/api": "1.9.1",
|
|
76
|
+
"@opentelemetry/api-logs": "0.208.0",
|
|
77
|
+
"@opentelemetry/context-async-hooks": "2.2.0",
|
|
78
|
+
"@opentelemetry/core": [
|
|
79
|
+
"2.11.0",
|
|
80
|
+
"2.2.0"
|
|
81
|
+
],
|
|
82
|
+
"@opentelemetry/resources": [
|
|
83
|
+
"2.11.0",
|
|
84
|
+
"2.2.0"
|
|
85
|
+
],
|
|
86
|
+
"@opentelemetry/sdk-logs": "0.208.0",
|
|
87
|
+
"@opentelemetry/sdk-metrics": "2.2.0",
|
|
88
|
+
"@opentelemetry/sdk-trace-node": "2.2.0",
|
|
89
|
+
"@opentelemetry/semantic-conventions": "1.43.0",
|
|
90
|
+
"@systemfsoftware/effect-cell-types": "8.1.0",
|
|
91
|
+
"detect-libc": "2.1.2",
|
|
92
|
+
"effect": "4.0.0-rc.112",
|
|
93
|
+
"msgpackr": "2.1.0",
|
|
94
|
+
"msgpackr-extract": "3.0.4",
|
|
95
|
+
"node-gyp-build-optional-packages": "5.2.2",
|
|
96
|
+
"ws": "8.21.3"
|
|
97
|
+
},
|
|
62
98
|
"scripts": {
|
|
63
99
|
"clean": "rimraf dist",
|
|
64
100
|
"build": "tsdown",
|
|
65
|
-
"typecheck": "tsc --noEmit --incremental",
|
|
101
|
+
"typecheck": "tsc --noEmit --incremental && tsc -p tsconfig.node.json --noEmit",
|
|
66
102
|
"attw": "attw --pack .",
|
|
67
103
|
"test": "vitest run",
|
|
68
|
-
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --format=${f:-default}"
|
|
104
|
+
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --format=${f:-default}",
|
|
105
|
+
"api:check": "api-extractor run",
|
|
106
|
+
"api:update": "api-extractor run --local"
|
|
69
107
|
}
|
|
70
108
|
}
|