Skip to content

Commit

Permalink
Merge pull request #771 from petebacondarwin/umd-bundling-fix
Browse files Browse the repository at this point in the history
Do not bundle external 3rd party libraries
  • Loading branch information
adamkleingit committed Dec 19, 2019
2 parents 2a976f1 + 11e0c67 commit 43569c3
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 1 deletion.
115 changes: 114 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
"protractor-jasmine2-html-reporter": "0.0.7",
"rimraf": "^2.5.1",
"rollup": "^0.41.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "7.0.2",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-uglify": "1.0.1",
Expand Down
2 changes: 2 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import nodeResolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import autoExternal from 'rollup-plugin-auto-external';
import uglify from 'rollup-plugin-uglify';

export default {
Expand All @@ -8,6 +9,7 @@ export default {
plugins: [
nodeResolve({ jsnext: true, main: true, module: true }),
commonjs(),
autoExternal(),
uglify()
],
sourceMap: true,
Expand Down

0 comments on commit 43569c3

Please sign in to comment.