@systemfsoftware/stryker-js-cli 7.0.1 → 8.0.1
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 +22 -0
- package/dist/compiler-CyKSVP2x.mjs +27429 -0
- package/dist/dist-Bn6hT7sW.mjs +5056 -0
- package/dist/dist-CgglvcIb.mjs +32119 -0
- package/dist/esm-shims-z34yX56b.mjs +12 -0
- package/dist/main.mjs +8188 -601
- package/dist/node-ZeTkblqG.mjs +27089 -0
- package/dist/parser.wasm32-wasi.wasm +0 -0
- package/dist/reporters/html.mjs +77 -0
- package/dist/rolldown-runtime-Dr7-SnC6.mjs +45 -0
- package/dist/wasm-CmiFEbUB.mjs +12995 -0
- package/dist/worker-runtime-DNtUUMeD.mjs +697 -0
- package/dist/workers/checker-worker.mjs +17 -28
- package/dist/workers/child-process-test-runner-worker.mjs +25 -38
- package/package.json +23 -22
- package/dist/node-B7U4hEuW.mjs +0 -107
- package/dist/worker-runtime-CT5LMMgY.mjs +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @systemfsoftware/stryker-js-cli
|
|
2
2
|
|
|
3
|
+
## 8.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Imports rewired to the collapsed `@systemfsoftware/stryker-js` root entry; each package now co-releases against the root-entry major.
|
|
8
|
+
|
|
9
|
+
## 8.0.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- The bundled `@noble/hashes` dependency advances from `1.8.0` to `2.4.0`. Hashing and random-byte generation are unchanged — the same digests and the same output. The CLI now requires **Node 20.19 or later**; on an earlier Node it will not start.
|
|
14
|
+
|
|
15
|
+
- The package now declares no runtime dependencies: installing it installs this package alone, and everything it uses is inlined into the published executable. The JavaScript parser is included as WebAssembly rather than a platform-specific binary, so one install works on every platform Node supports.
|
|
16
|
+
|
|
17
|
+
The package publishes one importable entry, `./package.json`, and no program entry: the `stryker` command remains its only surface.
|
|
18
|
+
|
|
19
|
+
The parser runs on Node's WASI support, so Node prints `ExperimentalWarning: WASI` on standard error the first time it parses. Standard output, the exit code and the run-event stream are unchanged, and a command that never parses — `--version`, `--help` — writes nothing to either descriptor.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Releases the workspace so its published versions track the shared dependency graph this change moves.
|
|
24
|
+
|
|
3
25
|
## 7.0.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|