Skip to content

Commit dadc388

Browse files
authored
Merge pull request #12 from statelyai/mellson/sky-inspector
createSkyInspector
2 parents 33b3512 + 115fc46 commit dadc388

8 files changed

+427
-331
lines changed

.changeset/friendly-pianos-itch.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@statelyai/inspect': patch
3+
---
4+
5+
Adds `createSkyInspector`, which allows you to inspect machines in Node or the browser. The inspection will send the events to a server backend through websockets and allows you to open and share a live inspection URL.

package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"@changesets/changelog-github": "^0.5.0",
44
"@changesets/cli": "^2.26.2",
55
"@types/jsdom": "^21.1.6",
6+
"@types/uuid": "^9.0.8",
67
"jsdom": "^23.0.0",
78
"tsup": "^7.2.0",
89
"typescript": "^5.1.6",
@@ -17,7 +18,11 @@
1718
"author": "David Khourshid <[email protected]>",
1819
"license": "MIT",
1920
"dependencies": {
21+
"fast-safe-stringify": "^2.1.1",
2022
"isomorphic-ws": "^5.0.0",
23+
"partysocket": "^0.0.25",
24+
"superjson": "^1",
25+
"uuid": "^9.0.1",
2126
"safe-stable-stringify": "^2.4.3"
2227
},
2328
"peerDependencies": {
@@ -30,7 +35,8 @@
3035
"prepublishOnly": "tsup src/index.ts --dts",
3136
"changeset": "changeset",
3237
"release": "changeset publish",
33-
"version": "changeset version"
38+
"version": "changeset version",
39+
"dev": "yarn build && ./scripts/dev.sh"
3440
},
3541
"publishConfig": {
3642
"access": "public"

0 commit comments

Comments
 (0)