@xmachines/play-solid-router 1.0.0 → 1.1.0

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 +3 -2
  2. package/package.json +12 -15
package/README.md CHANGED
@@ -1,9 +1,10 @@
1
- <!-- generated-by: gsd-doc-writer -->
2
-
3
1
  # @xmachines/play-solid-router
4
2
 
5
3
  SolidJS Router adapter for the XMachines Universal Player Architecture. Provides bidirectional synchronisation between a `PlayerActor`'s state machine routes and the browser URL via `@solidjs/router`.
6
4
 
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+ [![Version](https://img.shields.io/badge/version-1.1.0-blue)](https://www.npmjs.com/package/@xmachines/play-solid-router)
7
+
7
8
  Part of the [xmachines-js monorepo](../../README.md).
8
9
 
9
10
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmachines/play-solid-router",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "SolidJS Router adapter for XMachines Universal Player Architecture",
5
5
  "license": "MIT",
6
6
  "author": "XMachines Contributors",
@@ -15,11 +15,11 @@
15
15
  "LICENSE"
16
16
  ],
17
17
  "type": "module",
18
+ "sideEffects": false,
18
19
  "main": "./dist/index.js",
19
20
  "types": "./dist/index.d.ts",
20
21
  "exports": {
21
22
  ".": {
22
- "source": "./src/index.ts",
23
23
  "types": "./dist/index.d.ts",
24
24
  "default": "./dist/index.js"
25
25
  }
@@ -33,30 +33,27 @@
33
33
  "format": "oxfmt .",
34
34
  "test": "vitest",
35
35
  "test:watch": "vitest",
36
- "clean": "rm -rf dist *.tsbuildinfo coverage node_modules/.svelte2tsx-* node_modules/.vite*",
37
- "prepublishOnly": "npm run build"
36
+ "clean": "rm -rf dist *.tsbuildinfo coverage node_modules/.svelte2tsx-* node_modules/.vite*"
38
37
  },
39
38
  "dependencies": {
40
- "@xmachines/play": "1.0.0",
41
- "@xmachines/play-actor": "1.0.0",
42
- "@xmachines/play-router": "1.0.0",
43
- "@xmachines/play-signals": "1.0.0"
39
+ "@xmachines/play": "1.1.0",
40
+ "@xmachines/play-actor": "1.1.0",
41
+ "@xmachines/play-router": "1.1.0",
42
+ "@xmachines/play-signals": "1.1.0"
44
43
  },
45
44
  "devDependencies": {
46
45
  "@solidjs/router": "^0.16.1",
47
46
  "@solidjs/testing-library": "^0.8.10",
48
47
  "@testing-library/jest-dom": "^6.9.1",
49
- "@types/node": "^26.1.1",
48
+ "@types/node": "^26.2.0",
50
49
  "@vitest/browser-playwright": "^4.1.10",
51
- "@xmachines/play-router-shared": "1.0.0",
52
- "@xmachines/play-xstate": "1.0.0",
53
- "@xmachines/shared": "1.0.0",
50
+ "@xmachines/play-xstate": "1.1.0",
54
51
  "jsdom": "^29.1.0",
55
- "oxfmt": "^0.58.0",
56
- "oxlint": "^1.73.0",
52
+ "oxfmt": "^0.64.0",
53
+ "oxlint": "^1.79.0",
57
54
  "solid-js": "^1.9.12",
58
55
  "vite-plugin-solid": "^2.11.11",
59
- "vitest": "^4.1.10",
56
+ "vitest": "^4.1.11",
60
57
  "xstate": "^5.31.0"
61
58
  },
62
59
  "peerDependencies": {