Skip to content

Commit

Permalink
fix: add algosdk package paths as externals
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Nov 15, 2024
1 parent 9f7393a commit aa373f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const config: RollupOptions = {
normaliseEsmOutput(),
multiInput(),
],
external: [...Object.keys(pkg.dependencies), ...Object.keys(pkg.peerDependencies)],
external: [...Object.keys(pkg.dependencies), ...Object.keys(pkg.peerDependencies), /^algosdk\/*/],
onLog(level: LogLevel, log: RollupLog, handler: LogOrStringHandler) {
if (log.code === 'CIRCULAR_DEPENDENCY') {
handler('error', log)
Expand Down

0 comments on commit aa373f2

Please sign in to comment.