Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dimapaloskin committed Nov 11, 2018
1 parent 41d5cea commit c14832a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import babel from 'rollup-plugin-babel';
import babel from 'rollup-plugin-babel'

const lib = {
input: 'src/index.js',
output: {
file: 'dist/index.js',
format: 'cjs',
sourcemap: 'inline'
sourcemap: 'inline',
},
plugins: [ babel() ]
};
plugins: [babel()],
}

export default [lib]

0 comments on commit c14832a

Please sign in to comment.