Skip to content

Commit aa9b655

Browse files
committed
Fix missing dep
1 parent 3c33d8c commit aa9b655

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
import VueApollo from './lib/vue-plugin';
2-
export default VueApollo;
1+
module.exports = require('./lib/vue-plugin');

lib/vue-plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ function prepare() {
202202
}
203203
}
204204

205-
export default {
205+
module.exports = {
206206
install(Vue, options) {
207207

208208
apolloClient = options.apolloClient;

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-apollo",
3-
"version": "1.0.0-beta1",
3+
"version": "1.0.0-beta4",
44
"description": "Vue apollo integration",
55
"main": "index.js",
66
"scripts": {
@@ -23,5 +23,8 @@
2323
"homepage": "https://github.com/Akryum/vue-apollo#readme",
2424
"peerDependencies": {
2525
"apollo-client": "^0.4.15"
26+
},
27+
"dependencies": {
28+
"lodash.omit": "^4.5.0"
2629
}
2730
}

0 commit comments

Comments
 (0)