@systemfsoftware/all 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +63 -0
  2. package/package.json +35 -35
package/CHANGELOG.md ADDED
@@ -0,0 +1,63 @@
1
+ # @systemfsoftware/all
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - New package: the whole stack in one install, plus a ready-made oxlint configuration.
8
+
9
+ Installing it brings in every published `@systemfsoftware/*` package at versions known to
10
+ work together, and its default export is an oxlint config that turns on the built-in
11
+ `correctness` category and every rule this architecture recommends — the workflow, schema,
12
+ test-placement, property-testing, hygiene, entrypoint and cell-vocabulary tiers — each at
13
+ `error`:
14
+
15
+ ```ts
16
+ // oxlint.config.ts
17
+ import all from '@systemfsoftware/all'
18
+
19
+ export default all
20
+ ```
21
+
22
+ `effect`, `oxlint`, `oxlint-tsgolint` and `typescript` are required peers, so your project
23
+ keeps one copy of each. `oxlint-tsgolint` is the engine the type-aware rules run on: without
24
+ it, the first lint run stops at "Failed to find tsgolint executable". Framework-specific
25
+ peers — React, Vitest, Vite, Storybook and the rest — are optional, and nothing warns about
26
+ the ones you skip.
27
+
28
+ The rules are type-aware, so the files you lint must be covered by a `tsconfig.json`.
29
+ Without one, roughly half of them produce no diagnostics while still reading as enabled.
30
+
31
+ `rules`, `plugins` and `ignorePatterns` are also exported by name, for composing instead of
32
+ extending. Every package remains published on its own; reach for this one when you want the
33
+ set rather than one library
34
+
35
+ ### Patch Changes
36
+
37
+ - Drops the dependency on `@systemfsoftware/effect-purity-law`, a member that was never published, from the umbrella's dependency set. Installing the umbrella no longer tries to resolve a package that does not exist on the registry.
38
+
39
+ - New version is published through npm trusted publishing, so it carries a provenance attestation you can verify.
40
+
41
+ - Updated dependencies:
42
+ - @systemfsoftware/arethetypeswrong-cli@2.0.0
43
+ - @systemfsoftware/arethetypeswrong-core@2.0.0
44
+ - @systemfsoftware/effect-atom@1.0.0
45
+ - @systemfsoftware/effect-atom-react@0.6.0
46
+ - @systemfsoftware/effect-cell-types@2.0.0
47
+ - @systemfsoftware/effect-daemon-spec@1.0.0
48
+ - @systemfsoftware/effect-gherkin-spec@1.0.0
49
+ - @systemfsoftware/effect-schema-extensions@0.8.0
50
+ - @systemfsoftware/effect-schema-law@0.7.0
51
+ - @systemfsoftware/omp-agent-discipline@2.0.0
52
+ - @systemfsoftware/omp-claude-compat@2.0.0
53
+ - @systemfsoftware/oxlint-plugin@1.0.0
54
+ - @systemfsoftware/oxlint-plugin-effect-dmmf@2.0.0
55
+ - @systemfsoftware/oxlint-plugin-effect-schema@2.0.0
56
+ - @systemfsoftware/oxlint-plugin-effect-workflow@2.0.0
57
+ - @systemfsoftware/oxlint-plugin-test-placement@2.0.0
58
+ - @systemfsoftware/rx-effect@0.6.0
59
+ - @systemfsoftware/storybook-gherkin@1.0.0
60
+ - @systemfsoftware/stryker-js-cli@2.0.0
61
+ - @systemfsoftware/stryker-js-mutation-run@2.0.0
62
+ - @systemfsoftware/stryker-js-plugin-api@1.0.0
63
+ - @systemfsoftware/stryker-plugins@0.12.0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@systemfsoftware/all",
3
3
  "license": "Apache-2.0",
4
- "version": "0.1.0",
4
+ "version": "0.2.0",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
@@ -29,40 +29,40 @@
29
29
  "dist"
30
30
  ],
31
31
  "dependencies": {
32
- "@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
33
- "@systemfsoftware/arethetypeswrong-core": "^1.1.1",
34
- "@systemfsoftware/effect-atom": "^0.5.3",
35
- "@systemfsoftware/effect-atom-react": "^0.5.0",
36
- "@systemfsoftware/effect-daemon-spec": "^0.7.2",
37
- "@systemfsoftware/effect-cell-types": "^1.0.1",
38
- "@systemfsoftware/effect-memfs": "^1.1.1",
39
- "@systemfsoftware/effect-schema-extensions": "^0.7.1",
40
- "@systemfsoftware/effect-gherkin-spec": "^0.5.1",
41
- "@systemfsoftware/effect-schema-law": "^0.6.1",
42
- "@systemfsoftware/effect-schema-vite": "^1.5.1",
43
- "@systemfsoftware/hex-schema": "^1.6.3",
44
- "@systemfsoftware/omp-agent-discipline": "^1.5.2",
45
- "@systemfsoftware/oxlint-plugin": "^0.4.2",
46
- "@systemfsoftware/omp-claude-compat": "^1.7.0",
47
- "@systemfsoftware/oxlint-plugin-cell-vocabulary": "^1.0.0",
48
- "@systemfsoftware/oxlint-plugin-effect-dmmf": "^1.3.1",
49
- "@systemfsoftware/oxlint-plugin-effect-entrypoint": "^1.0.2",
50
- "@systemfsoftware/oxlint-plugin-effect-schema": "^1.1.2",
51
- "@systemfsoftware/oxlint-plugin-property-testing": "^1.1.2",
52
- "@systemfsoftware/oxlint-plugin-effect-workflow": "^1.6.2",
53
- "@systemfsoftware/oxlint-plugin-test-hygiene": "^1.1.2",
54
- "@systemfsoftware/oxlint-plugin-recommended": "^1.1.1",
55
- "@systemfsoftware/oxlint-plugin-test-placement": "^1.2.2",
56
- "@systemfsoftware/rx-effect": "^0.5.1",
57
- "@systemfsoftware/storybook-gherkin": "^0.1.0",
58
- "@systemfsoftware/stryker-js-cli": "^1.2.5",
59
- "@systemfsoftware/stryker-js-mutation-run": "^1.2.5",
60
- "@systemfsoftware/stryker-js-mutation-report": "^1.2.5",
61
- "@systemfsoftware/stryker-js-typescript-checker": "^1.2.3",
62
- "@systemfsoftware/stryker-js-plugin-api": "^0.1.0",
63
- "@systemfsoftware/stryker-js-vitest-runner": "^0.1.0",
64
- "@systemfsoftware/stryker-plugins": "^0.11.0",
65
- "@systemfsoftware/tsconfig": "^1.3.1"
32
+ "@systemfsoftware/arethetypeswrong-core": "^2.0.0",
33
+ "@systemfsoftware/arethetypeswrong-cli": "^2.0.0",
34
+ "@systemfsoftware/effect-cell-types": "^2.0.0",
35
+ "@systemfsoftware/effect-atom": "^1.0.0",
36
+ "@systemfsoftware/effect-atom-react": "^0.6.0",
37
+ "@systemfsoftware/effect-schema-extensions": "^0.8.0",
38
+ "@systemfsoftware/effect-gherkin-spec": "^1.0.0",
39
+ "@systemfsoftware/effect-daemon-spec": "^1.0.0",
40
+ "@systemfsoftware/effect-memfs": "^1.2.0",
41
+ "@systemfsoftware/effect-schema-law": "^0.7.0",
42
+ "@systemfsoftware/effect-schema-vite": "^1.5.2",
43
+ "@systemfsoftware/hex-schema": "^1.7.0",
44
+ "@systemfsoftware/omp-agent-discipline": "^2.0.0",
45
+ "@systemfsoftware/oxlint-plugin-cell-vocabulary": "^1.1.0",
46
+ "@systemfsoftware/oxlint-plugin-effect-dmmf": "^2.0.0",
47
+ "@systemfsoftware/omp-claude-compat": "^2.0.0",
48
+ "@systemfsoftware/oxlint-plugin-effect-entrypoint": "^1.0.3",
49
+ "@systemfsoftware/oxlint-plugin": "^1.0.0",
50
+ "@systemfsoftware/oxlint-plugin-effect-schema": "^2.0.0",
51
+ "@systemfsoftware/oxlint-plugin-effect-workflow": "^2.0.0",
52
+ "@systemfsoftware/oxlint-plugin-recommended": "^1.1.2",
53
+ "@systemfsoftware/oxlint-plugin-test-hygiene": "^1.1.3",
54
+ "@systemfsoftware/oxlint-plugin-test-placement": "^2.0.0",
55
+ "@systemfsoftware/rx-effect": "^0.6.0",
56
+ "@systemfsoftware/oxlint-plugin-property-testing": "^1.2.0",
57
+ "@systemfsoftware/storybook-gherkin": "^1.0.0",
58
+ "@systemfsoftware/stryker-js-mutation-report": "^1.2.6",
59
+ "@systemfsoftware/stryker-js-cli": "^2.0.0",
60
+ "@systemfsoftware/stryker-js-mutation-run": "^2.0.0",
61
+ "@systemfsoftware/stryker-js-plugin-api": "^1.0.0",
62
+ "@systemfsoftware/stryker-js-typescript-checker": "^1.3.0",
63
+ "@systemfsoftware/stryker-plugins": "^0.12.0",
64
+ "@systemfsoftware/stryker-js-vitest-runner": "^0.1.1",
65
+ "@systemfsoftware/tsconfig": "^1.3.2"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@microsoft/api-extractor": "^7.58.7",