@systemfsoftware/stryker-js-typescript-checker 1.3.0 → 1.4.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 CHANGED
@@ -1,5 +1,37 @@
1
1
  # @systemfsoftware/stryker-js-typescript-checker
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cut over to effect v4 (4.0.0-rc.108): public surface derives from effect types; peers flip effect ^3→^4
8
+
9
+ ### Patch Changes
10
+
11
+ - Fail a compile on errors only, not on the tree's standing suggestions
12
+
13
+ The dry run and the per-mutant check counted every diagnostic the program produced, so the Effect language service's suggestions — which the pristine tree carries by design and which surface in `lint:tsgo` and the editor — refused mutation runs outright with a dry-run compile error. Only error-category diagnostics fail a compile now; warnings and suggestions were never compile failures
14
+
15
+ - New version is published through npm trusted publishing, so it carries a provenance attestation you can verify.
16
+
17
+ - Each of these packages now has a README, so its registry page says what the package is, how
18
+ to install it, and what to import or register — previously the page was blank. The lint
19
+ plugins show the configuration line that enables what they recommend.
20
+
21
+ `@systemfsoftware/stryker-js-mutation-report` also carries its licence text
22
+
23
+ - These packages no longer ship their development files. Sources, tests and build, lint and
24
+ test configuration were all included, which broke consumers in one specific way: oxlint
25
+ discovers configuration by walking directories, finds the published `oxlint.config.ts` under
26
+ `node_modules`, and stops with "Stripping types is currently unsupported for files under
27
+ node_modules" before linting anything.
28
+
29
+ The installed package now contains the compiled output, the runtime schema files it reads,
30
+ and the usual manifest, README and licence
31
+
32
+ - Updated dependencies:
33
+ - @systemfsoftware/stryker-js-plugin-api@2.0.0
34
+
3
35
  ## 1.3.0
4
36
 
5
37
  ### Minor Changes
package/dist/index.mjs CHANGED
@@ -9,7 +9,7 @@ import { createRequire } from "module";
9
9
  import path from "path";
10
10
  import semver from "semver";
11
11
  import { SyntaxKind } from "typescript/unstable/ast";
12
- //#region ../../../node_modules/.pnpm/@jsr+std__jsonc@1.0.2/node_modules/@jsr/std__jsonc/parse.js
12
+ //#region ../../../../../node_modules/.pnpm/@jsr+std__jsonc@1.0.2/node_modules/@jsr/std__jsonc/parse.js
13
13
  /**
14
14
  * Converts a JSON with Comments (JSONC) string into an object.
15
15
  *
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@systemfsoftware/stryker-js-typescript-checker",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
7
- "directory": "packages/stryker-js/typescript-checker"
7
+ "directory": "packages/testing/mutation/stryker-js/typescript-checker"
8
8
  },
9
- "homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/stryker-js/typescript-checker#readme",
9
+ "homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/testing/mutation/stryker-js/typescript-checker#readme",
10
10
  "bugs": "https://github.com/systemfsoftware/systemfsoftware/issues",
11
11
  "description": "TypeScript checker plugin for Stryker — TS7 native",
12
12
  "type": "module",
@@ -25,7 +25,7 @@
25
25
  "semver": "^7.7.0",
26
26
  "tslib": "~2.8.0",
27
27
  "typescript": "^7",
28
- "@systemfsoftware/stryker-js-plugin-api": "^1.0.0"
28
+ "@systemfsoftware/stryker-js-plugin-api": "^2.0.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@std/jsonc": "npm:@jsr/std__jsonc@^1.0.2",
@@ -37,10 +37,10 @@
37
37
  "tsdown": "^0.22.14",
38
38
  "typed-inject": "~5.0.0",
39
39
  "vitest": "^4.1.10",
40
- "@systemfsoftware/effect-gherkin-spec": "^1.0.0",
40
+ "@systemfsoftware/oxlint-config": "^0.1.0",
41
+ "@systemfsoftware/effect-gherkin-spec": "^2.0.0",
41
42
  "@systemfsoftware/vitest-config": "^0.1.0",
42
- "@systemfsoftware/tsconfig": "^1.3.2",
43
- "@systemfsoftware/oxlint-config": "^0.1.0"
43
+ "@systemfsoftware/tsconfig": "^1.3.3"
44
44
  },
45
45
  "inlinedDependencies": {
46
46
  "@jsr/std__jsonc": "1.0.2"