Skip to content

Commit

Permalink
fix: added missing packages to tsup configs' externals
Browse files Browse the repository at this point in the history
  • Loading branch information
massivefermion committed Nov 21, 2024
1 parent 9879359 commit f7de29c
Show file tree
Hide file tree
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
Expand Up @@ -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
Expand Up @@ -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
Expand Up @@ -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
Expand Up @@ -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
Expand Up @@ -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
Expand Up @@ -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
Expand Up @@ -15,6 +15,7 @@ export default defineConfig({
"https",
"http",
"agentkeepalive",
"zod",
// Add other modules you want to externalize
],
});

0 comments on commit f7de29c

Please sign in to comment.