Skip to content

Commit

Permalink
style: Fix rollup.config format
Browse files Browse the repository at this point in the history
  • Loading branch information
Septh committed Jan 28, 2024
1 parent c6717bd commit 9188488
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,13 @@ export default defineConfig([
module: undefined,
},
}),
terser({
// sourceMap: false

})
terser()
],
// sucrase has circular dependencies :/
onLog(level, log, handler) {
if (log.code === 'CIRCULAR_DEPENDENCY')
return // Ignore circular dependency warnings
handler(level, log); // otherwise, just print the log
handler(level, log)
}
}
])

0 comments on commit 9188488

Please sign in to comment.