Skip to content

Commit

Permalink
fix: multiple shebangs in cli entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Oct 24, 2023
1 parent d499bfd commit c227c66
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,10 @@ export default [
output: [
{
file: 'bin/cli.cjs',
format: 'cjs',
banner: '#!/usr/bin/env node'
format: 'cjs'
}, {
file: 'bin/cli.mjs',
format: 'esm',
banner: '#!/usr/bin/env node'
format: 'esm'
}
]
},
Expand Down

0 comments on commit c227c66

Please sign in to comment.