@reventlessdev/reventless-gwt 1.0.0-alpha.183 → 1.0.0-alpha.185

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
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 1.0.0-alpha.185 (2026-08-16)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/reventless-gwt
9
+
10
+
11
+
12
+
13
+
14
+ # 1.0.0-alpha.184 (2026-08-16)
15
+
16
+ **Note:** Version bump only for package @reventlessdev/reventless-gwt
17
+
18
+
19
+
20
+
21
+
6
22
  # 1.0.0-alpha.183 (2026-08-15)
7
23
 
8
24
  **Note:** Version bump only for package @reventlessdev/reventless-gwt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-gwt",
3
- "version": "1.0.0-alpha.183",
3
+ "version": "1.0.0-alpha.185",
4
4
  "description": "Given-When-Then DSLs and test harness for Reventless slice testing",
5
5
  "license": "Apache-2.0",
6
6
  "jest": {
@@ -14,17 +14,17 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "sury": "11.0.0-alpha.4",
17
+ "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
17
18
  "@reventlessdev/rescript-effect": "0.1.0-alpha.32",
18
19
  "@reventlessdev/rescript-node": "2.0.0-alpha.7",
19
- "@reventlessdev/reventless-core": "3.0.0-alpha.236",
20
- "@reventlessdev/reventless-infra": "3.0.0-alpha.142",
21
- "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
22
- "@reventlessdev/reventless-spec": "3.0.0-alpha.114"
20
+ "@reventlessdev/reventless-core": "3.0.0-alpha.238",
21
+ "@reventlessdev/reventless-infra": "3.0.0-alpha.144",
22
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.116"
23
23
  },
24
24
  "devDependencies": {
25
25
  "rescript": "12.3.0",
26
26
  "sury-ppx": "11.0.0-alpha.2",
27
- "@reventlessdev/reventless-ppx": "1.0.0-alpha.66"
27
+ "@reventlessdev/reventless-ppx": "1.0.0-alpha.68"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "rescript": "12.3.0"
package/src/LocalHost.res CHANGED
@@ -4,8 +4,7 @@
4
4
  // `Plugin.res.mjs` against it, read the resolved `pluginStructure` (a plain record
5
5
  // — no Pulumi Output), and collect the per-plugin structures.
6
6
  //
7
- // Proven cold (docs/analysis/reventless-vscode-domain-graph-design.md "Spike
8
- // result"): `Make()` and `Plugin.Make(plat)` open no ports and start no timers —
7
+ // Proven cold: `Make()` and `Plugin.Make(plat)` open no ports and start no timers —
9
8
  // reading `pluginStructure` never touches the bus/scheduler/server wiring that the
10
9
  // live `deployPlugin` / `startServers` path adds (that path is the runner's, not
11
10
  // this). reventless-local is deliberately NOT a static dependency of reventless-gwt
@@ -5,8 +5,7 @@ open ReventlessCore
5
5
  // Generalises `EventMapping_GWT` so both the source and target of a mapping
6
6
  // can be an Aggregate (Behavior) or a StateChangeSlice. Covers all four
7
7
  // producer/consumer combinations: Aggr→Aggr, Aggr→DCB, DCB→Aggr, DCB→DCB.
8
- // See `docs/analysis/event-source-connection-matrix.md` for the full matrix
9
- // and `docs/plans/reventless-gwt.md` Stage 5 for the migration plan.
8
+ // See `docs/plans/done/reventless-gwt.md` Stage 5 for the migration plan.
10
9
  //
11
10
  // The unified `GwtSource`/`GwtTarget` module type is intentionally wider than
12
11
  // either `Aggregate.Spec` or the `StateChangeSlice.SliceSpec`: it names every
@@ -4,8 +4,7 @@
4
4
  // Runs under `node --test` (NOT Jest) on purpose: cold-loading the local platform
5
5
  // under Jest's experimental-vm-modules hits the graphql/yoga CJS-in-ESM interop
6
6
  // wall documented in tests/SplitApiFixtures.res. Plain node ESM is exactly the
7
- // runtime the CLI host uses, and where the Phase 4.5 spike proved cold-load works
8
- // (docs/analysis/reventless-vscode-domain-graph-design.md "Spike result"). It is
7
+ // runtime the CLI host uses, and where the Phase 4.5 spike proved cold-load works. It is
9
8
  // named without the `Test` suffix so the Jest `testMatch` glob
10
9
  // (`tests/**/*Test.res.mjs`) skips it — `pnpm run test:host` runs it via node. The
11
10
  // pure helpers (name derivation, discovery) are the Jest test in tests/LocalHostTest.res.
@@ -1,7 +1,6 @@
1
1
  // Worked examples for Mapping_GWT — one for each producer/consumer combination
2
2
  // (Aggr→Aggr, Aggr→DCB, DCB→Aggr, DCB→DCB). See
3
- // `docs/analysis/event-source-connection-matrix.md` for the connection matrix
4
- // and `docs/plans/reventless-gwt.md` Stage 5 for the plan context.
3
+ // `docs/plans/done/reventless-gwt.md` Stage 5 for the plan context.
5
4
  //
6
5
  // Each test exercises the full source-command → mapping → target-command →
7
6
  // target-decide pipeline end-to-end against the unified `GwtSource`/`GwtTarget`
@@ -1,6 +1,6 @@
1
1
  // Worked examples for Query_GWT — covers both a ReadModel and a StateViewSlice
2
2
  // to prove the unified DSL works for either consumer type. Stage 6 of
3
- // `docs/plans/reventless-gwt.md`.
3
+ // `docs/plans/done/reventless-gwt.md`.
4
4
 
5
5
  S.enableJson()
6
6