Skip to content

Commit

Permalink
Make rollup.conf.js match apollo-client
Browse files Browse the repository at this point in the history
...and hopefully fix the release build.
  • Loading branch information
jamesreggio committed Dec 12, 2017
1 parent c6fe3d9 commit 0f2b4bc
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
export default {
entry: 'lib/index.js',
dest: 'lib/bundle.umd.js',
format: 'umd',
sourceMap: true,
moduleName: 'apollo-cache-persist',
input: 'lib/index.js',
output: {
file: 'lib/bundle.umd.js',
format: 'umd',
},
name: 'apollo-cache-persist',
exports: 'named',
sourceMap: true,
onwarn,
};

Expand Down

0 comments on commit 0f2b4bc

Please sign in to comment.