Skip to content

Commit

Permalink
switches to separate sourcemap files to reduce the size of UMD bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoscaz committed Apr 11, 2020
1 parent b3c14fd commit ab6a3e5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SortedSet.umd-bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions SortedSet.umd-bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion SortedSet.umd-bundle.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions SortedSet.umd-bundle.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ export default {
name: 'SortedSet',
file: 'SortedSet.umd-bundle.js',
format: 'umd',
sourcemap: 'inline',
sourcemap: true,
},
{
name: 'SortedSet',
file: 'SortedSet.umd-bundle.min.js',
format: 'umd',
sourcemap: 'inline',
sourcemap: true,
plugins: [terser()],
},
],
Expand Down

0 comments on commit ab6a3e5

Please sign in to comment.