@remit/web-client 0.0.169 → 0.0.170
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/package.json +2 -1
- package/src/test-support/dom.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remit/web-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.170",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Remit web client, published as composable primitives — the app shell, auth shells, and runtime config. A distributor imports what it composes and bundles it.",
|
|
6
6
|
"exports": {
|
|
@@ -106,6 +106,7 @@
|
|
|
106
106
|
"@remit/drizzle-service": "*",
|
|
107
107
|
"@remit/electrodb-entities": "*",
|
|
108
108
|
"@remit/secrets-service": "*",
|
|
109
|
+
"@remit/test-dom": "*",
|
|
109
110
|
"@storybook/react-vite": "^9",
|
|
110
111
|
"@tailwindcss/vite": "^4",
|
|
111
112
|
"@tanstack/router-generator": "^1",
|
package/src/test-support/dom.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Mount-and-poke harness over the jsdom globals
|
|
2
|
+
* Mount-and-poke harness over the jsdom globals `@remit/test-dom` installs.
|
|
3
3
|
*
|
|
4
4
|
* Excluded from coverage by `test:run`; it lives under `src/` only because the
|
|
5
5
|
* build's `rootDir` is `src/`. Node's test runner gives every test file its own
|