Skip to content

Commit

Permalink
fix(release): do not attempt to create hash from source map
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Sep 18, 2024
1 parent 3f993d3 commit 0ba7631
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ export default [...bundles.map(({ outputFile, source }) => ({
input: source,
output: [
{
file: `${outputFile}.js`,
file: `${outputFile}.map.js`,
format: 'iife',
sourcemap: false,
sourcemap: 'inline',
exports: 'auto',
banner,
},
{
file: `${outputFile}.map.js`,
file: `${outputFile}.js`,
format: 'iife',
sourcemap: 'inline',
sourcemap: false,
exports: 'auto',
banner,
},
Expand Down

0 comments on commit 0ba7631

Please sign in to comment.