@xmachines/play-solid-router 1.0.0-beta.18 → 1.0.0-beta.19

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -10
package/README.md CHANGED
@@ -8,7 +8,7 @@ SolidJS Router adapter using `RouterBridgeBase` for consistent actor↔router sy
8
8
 
9
9
  `@xmachines/play-solid-router` provides seamless integration between SolidJS Router and XMachines state machines. Built on Solid's reactive primitives, it enables zero-adaptation signals synchronization.
10
10
 
11
- Per [RFC Play v1](https://gitlab.com/xmachin-es/rfc/-/blob/main/src/play-v1.md), this package implements:
11
+ Per [Play RFC](../docs/rfc/play.md), this package implements:
12
12
 
13
13
  - **Actor Authority (INV-01):** State machine controls navigation, router reflects decisions
14
14
  - **Passive Infrastructure (INV-04):** Router observes `actor.currentRoute` signal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmachines/play-solid-router",
3
- "version": "1.0.0-beta.18",
3
+ "version": "1.0.0-beta.19",
4
4
  "description": "SolidJS Router adapter for XMachines Universal Player Architecture",
5
5
  "license": "MIT",
6
6
  "author": "XMachines Contributors",
@@ -19,6 +19,7 @@
19
19
  "types": "./dist/index.d.ts",
20
20
  "exports": {
21
21
  ".": {
22
+ "source": "./src/index.ts",
22
23
  "types": "./dist/index.d.ts",
23
24
  "default": "./dist/index.js"
24
25
  }
@@ -30,22 +31,20 @@
30
31
  "build": "tsc --build",
31
32
  "test": "vitest",
32
33
  "test:watch": "vitest",
33
- "typecheck": "tsc --noEmit",
34
- "typecheck:test": "tsc --noEmit -p tsconfig.test.json",
35
- "clean": "rm -rf dist *.tsbuildinfo node_modules/.vite node_modules/.vite-temp",
34
+ "clean": "rm -rf dist *.tsbuildinfo coverage",
36
35
  "prepublishOnly": "npm run build"
37
36
  },
38
37
  "dependencies": {
39
- "@xmachines/play": "1.0.0-beta.18",
40
- "@xmachines/play-actor": "1.0.0-beta.18",
41
- "@xmachines/play-router": "1.0.0-beta.18",
42
- "@xmachines/play-signals": "1.0.0-beta.18"
38
+ "@xmachines/play": "1.0.0-beta.19",
39
+ "@xmachines/play-actor": "1.0.0-beta.19",
40
+ "@xmachines/play-router": "1.0.0-beta.19",
41
+ "@xmachines/play-signals": "1.0.0-beta.19"
43
42
  },
44
43
  "devDependencies": {
45
44
  "@solidjs/router": "^0.16.1",
46
45
  "@solidjs/testing-library": "^0.8.10",
47
- "@xmachines/play-xstate": "1.0.0-beta.18",
48
- "@xmachines/shared": "1.0.0-beta.18",
46
+ "@xmachines/play-xstate": "1.0.0-beta.19",
47
+ "@xmachines/shared": "1.0.0-beta.19",
49
48
  "jsdom": "^29.0.1",
50
49
  "solid-js": "^1.9.12",
51
50
  "vite-plugin-solid": "^2.11.11",