@xmachines/play-solid 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 +6 -6
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -11,13 +11,13 @@ Part of the [xmachines-js monorepo](../../README.md).
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
14
|
+
pnpm add @xmachines/play-solid
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
**Peer dependencies** — install alongside the package:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
|
|
20
|
+
pnpm add solid-js xstate @xstate/store @xmachines/json-render-solid @xmachines/json-render-core @xmachines/json-render-xstate
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Quick Start
|
|
@@ -184,15 +184,15 @@ import {
|
|
|
184
184
|
Run tests for this package in isolation:
|
|
185
185
|
|
|
186
186
|
```bash
|
|
187
|
-
|
|
187
|
+
pnpm --filter @xmachines/play-solid test
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
Or from within the package directory:
|
|
191
191
|
|
|
192
192
|
```bash
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
193
|
+
pnpm test # single run (jsdom environment)
|
|
194
|
+
pnpm run test:watch # watch mode
|
|
195
|
+
pnpm run test:ui # interactive Vitest UI
|
|
196
196
|
```
|
|
197
197
|
|
|
198
198
|
Coverage is collected with v8 (80% threshold for lines, functions, branches, and statements). Browser-specific tests live in `test/browser/` and are excluded from the default jsdom run.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmachines/play-solid",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.57",
|
|
4
4
|
"description": "Solid renderer for XMachines Play architecture",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"catalog",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"prepublishOnly": "npm run build"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@xmachines/play": "1.0.0-beta.
|
|
48
|
-
"@xmachines/play-actor": "1.0.0-beta.
|
|
49
|
-
"@xmachines/play-signals": "1.0.0-beta.
|
|
47
|
+
"@xmachines/play": "1.0.0-beta.57",
|
|
48
|
+
"@xmachines/play-actor": "1.0.0-beta.57",
|
|
49
|
+
"@xmachines/play-signals": "1.0.0-beta.57"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@solidjs/testing-library": "^0.8.10",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@xmachines/json-render-core": "^0.19.0-xm.2",
|
|
57
57
|
"@xmachines/json-render-solid": "^0.19.0-xm.2",
|
|
58
58
|
"@xmachines/json-render-xstate": "^0.19.0-xm.2",
|
|
59
|
-
"@xmachines/shared": "1.0.0-beta.
|
|
59
|
+
"@xmachines/shared": "1.0.0-beta.57",
|
|
60
60
|
"@xstate/store": "^3.17.0",
|
|
61
61
|
"jsdom": "^29.1.0",
|
|
62
62
|
"oxfmt": "^0.47.0",
|