Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
trekhleb committed Jun 29, 2019
1 parent c44e465 commit b62bddd
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,4 +1,4 @@
import { uglify } from 'rollup-plugin-uglify';
import {uglify} from 'rollup-plugin-uglify';
import babel from 'rollup-plugin-babel';

const config = {
Expand All @@ -7,13 +7,13 @@ const config = {
format: 'umd',
name: 'dist/usePosition.js',
globals: {
react: "React",
}
react: 'React',
},
},
external: ['react'],
plugins: [
babel({
exclude: "node_modules/**"
exclude: 'node_modules/**',
}),
uglify(),
],
Expand Down

0 comments on commit b62bddd

Please sign in to comment.