Skip to content

Commit 8958e3d

Browse files
Shawclaude
andcommitted
fix(app-control): declare @elizaos/shared dependency for turbo build ordering
src/services/app-registry-service.ts and src/actions/app-load-from-directory.ts both import from "@elizaos/shared", but package.json only declared @elizaos/core. Turbo's "^build" task dependency couldn't resolve the missing edge, so @elizaos/shared's dist wasn't built before plugin-app-control tried to bundle it — Nightly Build failed with esbuild "Could not resolve '@elizaos/shared'". Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 44a1aa3 commit 8958e3d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plugins/plugin-app-control/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"typecheck": "tsc --noEmit"
3434
},
3535
"dependencies": {
36-
"@elizaos/core": "2.0.0-beta.1"
36+
"@elizaos/core": "2.0.0-beta.1",
37+
"@elizaos/shared": "2.0.0-beta.1"
3738
},
3839
"peerDependencies": {
3940
"@elizaos/core": "2.0.0-beta.1",

0 commit comments

Comments
 (0)