@systemfsoftware/stryker-plugins 0.13.0 → 0.13.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @systemfsoftware/stryker-plugins
2
2
 
3
+ ## 0.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - The peer requirements for `effect` and for the Effect test-runner integration now accept any compatible `4.0.0-rc` release, instead of demanding one exact release candidate.
8
+
9
+ Installing alongside a newer release candidate no longer reports an unmet peer dependency or resolves a second copy of `effect` into the dependency tree.
10
+
3
11
  ## 0.13.0
4
12
 
5
13
  ### Minor Changes
package/README.md CHANGED
@@ -19,7 +19,7 @@ In `stryker.config.json`:
19
19
  {
20
20
  "plugins": [
21
21
  "@systemfsoftware/stryker-js-vitest-runner",
22
- "@stryker-mutator/typescript-checker",
22
+ "@systemfsoftware/stryker-js-typescript-checker",
23
23
  "@systemfsoftware/stryker-plugins"
24
24
  ],
25
25
  "ignorers": ["effect-schema-declarations"]
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import { t as strykerPlugins$1 } from "./effect-schema-ignorer-38xDaLr8.mjs";
2
2
  import { t as strykerPlugins$2 } from "./in-source-test-ignorer-DTJIr1ut.mjs";
3
- import { t as strykerPlugins$3 } from "./workflow-make-ignorer-dLlC4-S_.mjs";
3
+ import { t as strykerPlugins$3 } from "./workflow-make-ignorer-D8-1EVEm.mjs";
4
4
  //#region src/mod.ts
5
5
  const strykerPlugins = [
6
6
  ...strykerPlugins$1,
@@ -211,10 +211,14 @@ const makeArgumentBodiesOf = (program) => {
211
211
  walkAllNodes(program, (node) => {
212
212
  if (!isCallExpression(node)) return;
213
213
  if (!isWorkflowMakeCallee(node.callee, localNames)) return;
214
- const firstArgument = node.arguments[0];
215
- if (firstArgument === void 0 || !isIdentifier(firstArgument)) return;
216
- const resolved = followFunctionReference(firstArgument.name, bindings, 0);
217
- if (resolved !== null && typeof resolved === "object") bodies.add(resolved);
214
+ for (const argument of node.arguments) {
215
+ if (!isIdentifier(argument)) continue;
216
+ const resolved = followFunctionReference(argument.name, bindings, 0);
217
+ if (resolved !== null && typeof resolved === "object") {
218
+ bodies.add(resolved);
219
+ break;
220
+ }
221
+ }
218
222
  });
219
223
  }
220
224
  MAKE_ARGUMENT_BODIES_BY_PROGRAM.set(program, bodies);
@@ -1,2 +1,2 @@
1
- import { n as NOT_INSIDE_WORKFLOW_MAKE, r as decideWorkflowMakeBoundaryIgnore, t as strykerPlugins } from "./workflow-make-ignorer-dLlC4-S_.mjs";
1
+ import { n as NOT_INSIDE_WORKFLOW_MAKE, r as decideWorkflowMakeBoundaryIgnore, t as strykerPlugins } from "./workflow-make-ignorer-D8-1EVEm.mjs";
2
2
  export { NOT_INSIDE_WORKFLOW_MAKE, decideWorkflowMakeBoundaryIgnore, strykerPlugins };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@systemfsoftware/stryker-plugins",
3
3
  "license": "Apache-2.0",
4
- "version": "0.13.0",
4
+ "version": "0.13.1",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
@@ -48,31 +48,29 @@
48
48
  },
49
49
  "devDependencies": {
50
50
  "@babel/types": "^7.29.0",
51
- "@effect/vitest": "4.0.0-rc.108",
51
+ "@effect/vitest": "4.0.0-rc.111",
52
52
  "@microsoft/api-extractor": "^7.58.7",
53
- "@stryker-mutator/api": "^9.6.1",
54
53
  "@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
55
54
  "@types/node": "^24",
56
55
  "@vitest/coverage-v8": "^4",
57
- "effect": "4.0.0-rc.108",
56
+ "effect": "4.0.0-rc.111",
58
57
  "oxlint": "^1.77.0",
59
58
  "rimraf": "^6.1.3",
60
59
  "tsdown": "^0.22.14",
61
60
  "tstyche": "^7.1.0",
62
61
  "vitest": "^4.1.10",
63
- "@systemfsoftware/effect-schema-law": "^0.8.0",
64
- "@systemfsoftware/effect-gherkin-spec": "^2.0.0",
65
- "@systemfsoftware/effect-schema-vite": "^1.5.3",
62
+ "@systemfsoftware/effect-gherkin-spec": "^2.0.1",
66
63
  "@systemfsoftware/oxlint-config": "^0.1.0",
64
+ "@systemfsoftware/stryker-js-plugin-api": "^2.1.0",
67
65
  "@systemfsoftware/tsconfig": "^1.3.3",
68
66
  "@systemfsoftware/vitest-config": "^0.1.0",
69
- "@systemfsoftware/stryker-js-plugin-api": "^2.0.0"
67
+ "@systemfsoftware/effect-schema-law": "^0.9.0",
68
+ "@systemfsoftware/effect-schema-vite": "^1.5.4"
70
69
  },
71
70
  "peerDependencies": {
72
- "@stryker-mutator/api": "^9.6.1",
73
- "effect": "4.0.0-rc.108",
71
+ "effect": "^4.0.0-rc.111",
74
72
  "typescript": ">=5.0.0",
75
- "@systemfsoftware/stryker-js-plugin-api": "^2.0.0"
73
+ "@systemfsoftware/stryker-js-plugin-api": "^2.1.0"
76
74
  },
77
75
  "publishConfig": {
78
76
  "provenance": true