@systemfsoftware/stryker-js-mutation-report 1.2.7 → 1.2.9
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 +21 -0
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @systemfsoftware/stryker-js-mutation-report
|
|
2
2
|
|
|
3
|
+
## 1.2.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Plugins are discovered under this scope by default. The `plugins` option now
|
|
8
|
+
defaults to a glob over this scope instead of the original project's, so a
|
|
9
|
+
configuration that relied on the previous default while installing plugins from
|
|
10
|
+
the original project must now list those plugins explicitly. Discovery also no
|
|
11
|
+
longer fails when no matching scope directory is installed: it loads nothing and
|
|
12
|
+
warns.
|
|
13
|
+
|
|
14
|
+
The report's dependency section names the packages of this scope, and the
|
|
15
|
+
report's home link points at this project.
|
|
16
|
+
|
|
17
|
+
## 1.2.8
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies:
|
|
22
|
+
- @systemfsoftware/stryker-js-mutation-run@4.0.0
|
|
23
|
+
|
|
3
24
|
## 1.2.7
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/stryker-js-mutation-report",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.9",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
|
|
@@ -14,28 +14,27 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@stryker-mutator/api": "^9.6.1",
|
|
18
17
|
"chalk": "~5.6.0",
|
|
19
18
|
"emoji-regex": "~10.6.0",
|
|
20
19
|
"mutation-testing-elements": "3.7.3",
|
|
21
20
|
"mutation-testing-metrics": "3.7.3",
|
|
22
21
|
"progress": "~2.0.3",
|
|
23
22
|
"typed-inject": "~5.0.0",
|
|
24
|
-
"@systemfsoftware/stryker-js-plugin-api": "^2.
|
|
25
|
-
"@systemfsoftware/stryker-js-mutation-run": "^
|
|
23
|
+
"@systemfsoftware/stryker-js-plugin-api": "^2.2.0",
|
|
24
|
+
"@systemfsoftware/stryker-js-mutation-run": "^4.1.0"
|
|
26
25
|
},
|
|
27
26
|
"devDependencies": {
|
|
28
27
|
"@microsoft/api-extractor": "^7.58.7",
|
|
29
28
|
"@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
|
|
30
29
|
"@types/node": "^24",
|
|
31
30
|
"@types/progress": "2.0.7",
|
|
32
|
-
"effect": "4.0.0-rc.
|
|
31
|
+
"effect": "4.0.0-rc.111",
|
|
33
32
|
"oxlint": "^1.77.0",
|
|
34
33
|
"rimraf": "^6.1.3",
|
|
35
34
|
"tsdown": "^0.22.14",
|
|
36
35
|
"typescript": "^7",
|
|
37
36
|
"vitest": "^4.1.10",
|
|
38
|
-
"@systemfsoftware/effect-gherkin-spec": "^2.0.
|
|
37
|
+
"@systemfsoftware/effect-gherkin-spec": "^2.0.1",
|
|
39
38
|
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
40
39
|
"@systemfsoftware/vitest-config": "^0.1.0",
|
|
41
40
|
"@systemfsoftware/tsconfig": "^1.3.3"
|