Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created May 16, 2018 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/835d1fbb8b013d6f7be4fd63d08554f4 to your computer and use it in GitHub Desktop.
Save dance2die/835d1fbb8b013d6f7be4fd63d08554f4 to your computer and use it in GitHub Desktop.
// From
plugins: [
resolve(),
commonjs(),
uglify(),
babel({
exclude: "node_modules/**"
})
]
// To
plugins: [
resolve(),
babel({
exclude: "node_modules/**"
}),
commonjs(),
uglify()
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment