@xmachines/play-actor 1.0.0-beta.56 → 1.0.0-beta.58
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 +4 -4
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-actor
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
**Peer dependencies** — install alongside the package:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
|
|
18
|
+
pnpm add xstate @xmachines/play @xmachines/play-signals
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Overview
|
|
@@ -174,13 +174,13 @@ Run the test suite for this package in isolation:
|
|
|
174
174
|
|
|
175
175
|
```bash
|
|
176
176
|
# From the package directory
|
|
177
|
-
|
|
177
|
+
pnpm test
|
|
178
178
|
|
|
179
179
|
# From the monorepo root (workspace-scoped)
|
|
180
|
-
|
|
180
|
+
pnpm --filter @xmachines/play-actor test
|
|
181
181
|
|
|
182
182
|
# Watch mode
|
|
183
|
-
|
|
183
|
+
pnpm --filter @xmachines/play-actor run test:watch
|
|
184
184
|
```
|
|
185
185
|
|
|
186
186
|
## Requirements
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmachines/play-actor",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.58",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Abstract Actor base class for XMachines Play Architecture",
|
|
6
6
|
"keywords": [
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@testing-library/jest-dom": "^6.9.1",
|
|
51
51
|
"@types/node": "^25.6.0",
|
|
52
|
-
"@xmachines/shared": "1.0.0-beta.
|
|
52
|
+
"@xmachines/shared": "1.0.0-beta.58",
|
|
53
53
|
"oxfmt": "^0.47.0",
|
|
54
54
|
"oxlint": "^1.62.0",
|
|
55
55
|
"vitest": "^4.1.5",
|
|
56
56
|
"xstate": "^5.31.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@xmachines/play": "1.0.0-beta.
|
|
60
|
-
"@xmachines/play-signals": "1.0.0-beta.
|
|
59
|
+
"@xmachines/play": "1.0.0-beta.58",
|
|
60
|
+
"@xmachines/play-signals": "1.0.0-beta.58",
|
|
61
61
|
"xstate": "^5.31.0"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|