@xmachines/play-react 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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +5 -5
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
- npm install @xmachines/play-react
12
+ pnpm add @xmachines/play-react
13
13
  ```
14
14
 
15
15
  **Peer dependencies** (must be installed separately):
16
16
 
17
17
  ```bash
18
- npm install react react-dom xstate @xstate/store @xmachines/json-render-react @xmachines/json-render-core @xmachines/json-render-xstate
18
+ pnpm add react react-dom xstate @xstate/store @xmachines/json-render-react @xmachines/json-render-core @xmachines/json-render-xstate
19
19
  ```
20
20
 
21
21
  Supported versions:
@@ -171,19 +171,19 @@ React state is **never** used for business logic — only for triggering React's
171
171
  Run unit tests (jsdom environment):
172
172
 
173
173
  ```bash
174
- npm test -w @xmachines/play-react
174
+ pnpm --filter @xmachines/play-react test
175
175
  ```
176
176
 
177
177
  Run tests with coverage:
178
178
 
179
179
  ```bash
180
- npm run test:coverage -w @xmachines/play-react
180
+ pnpm --filter @xmachines/play-react run test:coverage
181
181
  ```
182
182
 
183
183
  Run browser integration tests (requires Chromium):
184
184
 
185
185
  ```bash
186
- npm run test:browser -w @xmachines/play-react
186
+ pnpm --filter @xmachines/play-react run test:browser
187
187
  ```
188
188
 
189
189
  Coverage thresholds: 80% lines, functions, branches, and statements.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmachines/play-react",
3
- "version": "1.0.0-beta.56",
3
+ "version": "1.0.0-beta.57",
4
4
  "description": "React renderer for XMachines Play architecture with signal-driven rendering",
5
5
  "keywords": [
6
6
  "actor",
@@ -45,9 +45,9 @@
45
45
  "prepublishOnly": "npm run build"
46
46
  },
47
47
  "dependencies": {
48
- "@xmachines/play": "1.0.0-beta.56",
49
- "@xmachines/play-actor": "1.0.0-beta.56",
50
- "@xmachines/play-signals": "1.0.0-beta.56"
48
+ "@xmachines/play": "1.0.0-beta.57",
49
+ "@xmachines/play-actor": "1.0.0-beta.57",
50
+ "@xmachines/play-signals": "1.0.0-beta.57"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@testing-library/jest-dom": "^6.9.1",
@@ -60,7 +60,7 @@
60
60
  "@xmachines/json-render-core": "^0.19.0-xm.2",
61
61
  "@xmachines/json-render-react": "^0.19.0-xm.2",
62
62
  "@xmachines/json-render-xstate": "^0.19.0-xm.2",
63
- "@xmachines/shared": "1.0.0-beta.56",
63
+ "@xmachines/shared": "1.0.0-beta.57",
64
64
  "@xstate/store": "^3.17.0",
65
65
  "jsdom": "^29.1.0",
66
66
  "oxfmt": "^0.47.0",