Skip to content

Commit fa9f7ba

Browse files
Shawclaude
andcommitted
fix: declare missing workspace deps so vitest can resolve them
- packages/agent/package.json: agent's agent-status-routes.ts imports @elizaos/app-elizamaker/registry-service-registry but the workspace package wasn't in agent's dependencies. Server Tests then died with ERR_MODULE_NOT_FOUND on the subpath import. Add the workspace dep. - plugins/plugin-raydium/package.json: RaydiumLpService.ts imports decimal.js but the dep wasn't declared, so plugin-raydium's vitest failed to load the file ("Failed to load url decimal.js"). Add it. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent d21646f commit fa9f7ba

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

packages/agent/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
},
136136
"dependencies": {
137137
"@clack/prompts": "^1.0.0",
138+
"@elizaos/app-elizamaker": "workspace:*",
138139
"@elizaos/app-task-coordinator": "workspace:*",
139140
"@elizaos/app-training": "workspace:*",
140141
"@elizaos/capacitor-contacts": "workspace:*",

plugins/plugin-raydium/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"@raydium-io/raydium-sdk-v2": "^0.1.139-alpha",
1010
"@solana/spl-token": "^0.4.1",
1111
"bn.js": "^5.2.1",
12-
"bs58": "^5.0.0"
12+
"bs58": "^5.0.0",
13+
"decimal.js": "^10.4.3"
1314
},
1415
"devDependencies": {
1516
"@solana/web3.js": "^1.91.4",

0 commit comments

Comments
 (0)