diff --git a/rollup.config.js b/rollup.config.js index 53ae9a7..a0a9c63 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -4,21 +4,21 @@ import camelCase from 'camelcase'; const pkg = require('./package.json'); export default { - entry: 'src/index.js', - plugins: [ - babel(), - ], - targets: [ - { - dest: pkg.main, - format: 'umd', - moduleName: camelCase(pkg.name), - sourceMap: true - }, - { - dest: pkg.module, - format: 'es', - sourceMap: true - } - ] + entry: 'src/index.js', + plugins: [ + babel() + ], + targets: [ + { + dest: pkg.main, + format: 'umd', + moduleName: camelCase(pkg.name), + sourceMap: true + }, + { + dest: pkg.module, + format: 'es', + sourceMap: true + } + ] };