From 6e60874c6d6adb8f405122a8a2041c347501b161 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Tue, 7 Feb 2017 17:48:14 +0700 Subject: [PATCH] Keep XO happy --- rollup.config.js | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) 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 + } + ] };