Skip to content

Commit

Permalink
build: use auto for exports
Browse files Browse the repository at this point in the history
now we don't need to write Vuefire.default in the browser build

BREAKING CHANGE: when using the umd build, do `Vue.use(Vuefire)` instead of
`Vue.use(Vuefire.default)`
  • Loading branch information
posva committed Apr 15, 2018
1 parent 5e5f09f commit 11c4bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const banner =

const bundleOptions = {
banner,
exports: 'named',
exports: 'auto',
format: 'umd',
name: moduleName,
}
Expand Down

0 comments on commit 11c4bd2

Please sign in to comment.