Skip to content

Commit

Permalink
Fix missing dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Sep 19, 2016
1 parent 3c33d8c commit aa9b655
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import VueApollo from './lib/vue-plugin';
export default VueApollo;
module.exports = require('./lib/vue-plugin');
2 changes: 1 addition & 1 deletion lib/vue-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ function prepare() {
}
}

export default {
module.exports = {
install(Vue, options) {

apolloClient = options.apolloClient;
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-apollo",
"version": "1.0.0-beta1",
"version": "1.0.0-beta4",
"description": "Vue apollo integration",
"main": "index.js",
"scripts": {
Expand All @@ -23,5 +23,8 @@
"homepage": "https://github.com/Akryum/vue-apollo#readme",
"peerDependencies": {
"apollo-client": "^0.4.15"
},
"dependencies": {
"lodash.omit": "^4.5.0"
}
}

0 comments on commit aa9b655

Please sign in to comment.