UNPKG

rollup-plugin-closure-compile

Version:

Rollup plugin that uses the up-to-date JS version of Closure Compiler to minify your code. Works with sourcemaps

15 lines (13 loc) 267 B
// rollup.config.js (building more than one bundle) export default [ { input: 'src/index.js', output: { file: 'dist/closure-compiler-rollup.js', format: 'umd', name: 'sum', sourcemap: true }, plugins: [] } ]