Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created June 22, 2016 14:10
Show Gist options
  • Save tmcw/332ff1dcae8cacb70530785dd143aeac to your computer and use it in GitHub Desktop.
Save tmcw/332ff1dcae8cacb70530785dd143aeac to your computer and use it in GitHub Desktop.
import commonjs from 'rollup-plugin-commonjs';
import nodeResolve from 'rollup-plugin-node-resolve';
export default {
entry: 'foo.js',
format: 'cjs',
plugins: [ nodeResolve(), commonjs() ],
dest: 'bundle.js'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment