@reventlessdev/reventless-gwt 1.0.0-alpha.176 → 1.0.0-alpha.178
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,21 @@
|
|
|
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.178 (2026-08-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/reventless-gwt
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 1.0.0-alpha.177 (2026-08-13)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **rescript:** bind import.meta so no module reaches for %raw ([c7bd00c](https://github.com/ReventlessDev/reventless-core/commit/c7bd00c0d49ca06cb26a0891a85921219eb87b12))
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 1.0.0-alpha.176 (2026-08-12)
|
|
7
22
|
|
|
8
23
|
**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.
|
|
3
|
+
"version": "1.0.0-alpha.178",
|
|
4
4
|
"description": "Given-When-Then DSLs and test harness for Reventless slice testing",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"sury": "11.0.0-alpha.4",
|
|
17
|
-
"@reventlessdev/rescript-effect": "0.1.0-alpha.32",
|
|
18
|
-
"@reventlessdev/rescript-node": "2.0.0-alpha.4",
|
|
19
|
-
"@reventlessdev/reventless-core": "3.0.0-alpha.229",
|
|
20
17
|
"@reventlessdev/rescript-jest": "1.0.0-alpha.10",
|
|
21
|
-
"@reventlessdev/
|
|
22
|
-
"@reventlessdev/reventless-
|
|
18
|
+
"@reventlessdev/rescript-effect": "0.1.0-alpha.32",
|
|
19
|
+
"@reventlessdev/reventless-core": "3.0.0-alpha.231",
|
|
20
|
+
"@reventlessdev/reventless-infra": "3.0.0-alpha.139",
|
|
21
|
+
"@reventlessdev/rescript-node": "2.0.0-alpha.5",
|
|
22
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.112"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"rescript": "12.3.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
@module("node:assert/strict") external deepEqual: ('a, 'a) => unit = "deepEqual"
|
|
19
19
|
@module("node:assert/strict") external ok: (bool, ~message: string=?) => unit = "ok"
|
|
20
20
|
|
|
21
|
-
let here =
|
|
21
|
+
let here = NodeImportMeta.dirname
|
|
22
22
|
let repoRoot = NodePath.join([here, "..", "..", ".."]) // reventless-gwt/test → repo root
|
|
23
23
|
let catalogDir = NodePath.join([repoRoot, "examples", "online-shop-aggregates", "catalog"])
|
|
24
24
|
let orderingDir = NodePath.join([repoRoot, "examples", "online-shop-aggregates", "ordering"])
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
// Generated by ReScript, PLEASE EDIT WITH CARE
|
|
2
2
|
|
|
3
|
-
import * as Nodeurl from "node:url";
|
|
4
3
|
import * as Nodepath from "node:path";
|
|
5
4
|
import * as Nodetest from "node:test";
|
|
6
5
|
import * as Stdlib_Option from "@rescript/runtime/lib/es6/Stdlib_Option.js";
|
|
7
6
|
import * as Strict from "node:assert/strict";
|
|
8
7
|
import * as LocalHost$ReventlessGwt from "../src/LocalHost.res.mjs";
|
|
9
8
|
|
|
10
|
-
let here =
|
|
9
|
+
let here = import.meta.dirname;
|
|
11
10
|
|
|
12
11
|
let repoRoot = Nodepath.join(here, "..", "..", "..");
|
|
13
12
|
|