@xmachines/play-solid-router 1.0.0-beta.56 → 1.0.0-beta.57
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/README.md +5 -5
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -9,13 +9,13 @@ Part of the [xmachines-js monorepo](../../README.md).
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
|
|
12
|
+
pnpm add @xmachines/play-solid-router
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
**Peer dependencies** (must be installed separately):
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
|
|
18
|
+
pnpm add solid-js @solidjs/router xstate
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
- `solid-js` `^1.8.0`
|
|
@@ -194,16 +194,16 @@ Run tests for this package in isolation:
|
|
|
194
194
|
|
|
195
195
|
```bash
|
|
196
196
|
# From the monorepo root
|
|
197
|
-
|
|
197
|
+
pnpm --filter @xmachines/play-solid-router test
|
|
198
198
|
|
|
199
199
|
# Or from this package directory
|
|
200
|
-
|
|
200
|
+
pnpm test
|
|
201
201
|
```
|
|
202
202
|
|
|
203
203
|
**Browser tests** (`test/browser/**/*.browser.test.ts`) run against real Chromium via Playwright, covering async sequencing that jsdom cannot faithfully reproduce:
|
|
204
204
|
|
|
205
205
|
```bash
|
|
206
|
-
|
|
206
|
+
pnpm exec vitest --config vitest.browser.config.ts --project play-solid-router-browser
|
|
207
207
|
```
|
|
208
208
|
|
|
209
209
|
Coverage thresholds: **80%** lines, functions, branches, and statements.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmachines/play-solid-router",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.57",
|
|
4
4
|
"description": "SolidJS Router adapter for XMachines Universal Player Architecture",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "XMachines Contributors",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"prepublishOnly": "npm run build"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@xmachines/play": "1.0.0-beta.
|
|
41
|
-
"@xmachines/play-actor": "1.0.0-beta.
|
|
42
|
-
"@xmachines/play-router": "1.0.0-beta.
|
|
43
|
-
"@xmachines/play-signals": "1.0.0-beta.
|
|
40
|
+
"@xmachines/play": "1.0.0-beta.57",
|
|
41
|
+
"@xmachines/play-actor": "1.0.0-beta.57",
|
|
42
|
+
"@xmachines/play-router": "1.0.0-beta.57",
|
|
43
|
+
"@xmachines/play-signals": "1.0.0-beta.57"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@solidjs/router": "^0.16.1",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"@testing-library/jest-dom": "^6.9.1",
|
|
49
49
|
"@types/node": "^25.6.0",
|
|
50
50
|
"@vitest/browser-playwright": "^4.1.5",
|
|
51
|
-
"@xmachines/play-router-shared": "1.0.0-beta.
|
|
52
|
-
"@xmachines/play-xstate": "1.0.0-beta.
|
|
53
|
-
"@xmachines/shared": "1.0.0-beta.
|
|
51
|
+
"@xmachines/play-router-shared": "1.0.0-beta.57",
|
|
52
|
+
"@xmachines/play-xstate": "1.0.0-beta.57",
|
|
53
|
+
"@xmachines/shared": "1.0.0-beta.57",
|
|
54
54
|
"jsdom": "^29.1.0",
|
|
55
55
|
"oxfmt": "^0.47.0",
|
|
56
56
|
"oxlint": "^1.62.0",
|