Skip to content

Commit 9ecb44b

Browse files
authored
Merge pull request #2131 from elizaOS/fix/broken-autonome
fix: syntax issue on autonome plugin and lock file update
2 parents e1b7c80 + 7d6756a commit 9ecb44b

File tree

4 files changed

+317
-313
lines changed

4 files changed

+317
-313
lines changed

packages/plugin-autonome/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-autonome",
3-
"version": "0.1.7-alpha.1",
3+
"version": "0.1.7",
44
"main": "dist/index.js",
55
"type": "module",
66
"types": "dist/index.d.ts",

packages/plugin-autonome/src/actions/launchAgent.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export default {
9595
creationMethod: 2,
9696
envList: {},
9797
templateId: "Eliza",
98+
};
9899

99100
const sendPostRequest = async () => {
100101
try {
@@ -169,4 +170,5 @@ export default {
169170
},
170171
],
171172
] as ActionExample[][],
172-
} as Action;
173+
} satisfies Action;
174+

packages/plugin-autonome/tsup.config.ts

-10
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,5 @@ export default defineConfig({
1515
"https",
1616
"http",
1717
"agentkeepalive",
18-
"safe-buffer",
19-
"base-x",
20-
"bs58",
21-
"borsh",
22-
"@solana/buffer-layout",
23-
"stream",
24-
"buffer",
25-
"querystring",
26-
"amqplib",
27-
// Add other modules you want to externalize
2818
],
2919
});

0 commit comments

Comments
 (0)