Skip to content

Commit

Permalink
chore: remove cjs output
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisermann committed Oct 14, 2023
1 parent b0011d5 commit afb4b88
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ export default [
// bundle runtime
{
input: 'src/runtime/index.ts',
output: [
{ file: pkg.main, format: 'es' },
{ file: pkg.exports.require, format: 'cjs' },
],
output: [{ file: pkg.main, format: 'es' }],
external,
plugins: [commonjs(), autoExternal(), esbuild()],
},
Expand Down

0 comments on commit afb4b88

Please sign in to comment.