Skip to content

Commit

Permalink
Merge pull request elizaOS#488 from massivefermion/main
Browse files Browse the repository at this point in the history
fix: added missing packages to tsup configs' externals
jkbrooks authored Nov 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 9879359 + f7de29c commit 4f817e8
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter-postgres/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ export default defineConfig({
"https",
"http",
"agentkeepalive",

"uuid",
// Add other modules you want to externalize
],
});
1 change: 1 addition & 0 deletions packages/adapter-sqlite/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ export default defineConfig({
"http",
"agentkeepalive",
"@anush008/tokenizers",
"uuid",
// Add other modules you want to externalize
],
});
1 change: 1 addition & 0 deletions packages/adapter-supabase/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -15,6 +15,7 @@ export default defineConfig({
"https",
"http",
"agentkeepalive",
"uuid",
// Add other modules you want to externalize
],
});
1 change: 1 addition & 0 deletions packages/client-auto/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ export default defineConfig({
"stream",
"buffer",
"rpc-websockets",
"@solana/web3.js",
// Add other modules you want to externalize
],
});
1 change: 1 addition & 0 deletions packages/plugin-image-generation/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -15,6 +15,7 @@ export default defineConfig({
"https",
"http",
"agentkeepalive",
"zod",
// Add other modules you want to externalize
],
});
1 change: 1 addition & 0 deletions packages/plugin-node/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -15,6 +15,7 @@ export default defineConfig({
"https",
"http",
"agentkeepalive",
"zod",
// Add other modules you want to externalize
],
});
1 change: 1 addition & 0 deletions packages/plugin-starknet/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -15,6 +15,7 @@ export default defineConfig({
"https",
"http",
"agentkeepalive",
"zod",
// Add other modules you want to externalize
],
});

0 comments on commit 4f817e8

Please sign in to comment.