Skip to content

Commit 060c17c

Browse files
Fix example app build paths for in-repo structure
- Update build:sdk script to use correct parent directory path - Fix SDK dependency path to reference parent directory - Reinstall dependencies to update symlinks - Verify dev server now works correctly Co-authored-by: openhands <openhands@all-hands.dev>
1 parent bc7afbd commit 060c17c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

example/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"scripts": {
77
"dev": "npm run build:sdk && vite --host 0.0.0.0 --port 12000",
88
"build": "npm run build:sdk && tsc && vite build",
9-
"build:sdk": "cd ../agent-server-typescript-client && npm run build",
9+
"build:sdk": "cd ../ && npm run build",
1010
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
1111
"preview": "vite preview"
1212
},
1313
"dependencies": {
14-
"@openhands/agent-server-typescript-client": "file:../agent-server-typescript-client",
14+
"@openhands/agent-server-typescript-client": "file:../",
1515
"react": "^18.2.0",
1616
"react-dom": "^18.2.0"
1717
},

0 commit comments

Comments
 (0)