Skip to content

Commit 78720df

Browse files
committed
Fix #43
1 parent ef7ef5b commit 78720df

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

.meteor/versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
accounts-base@1.2.8
22
akryum:npm-check@0.0.3
33
akryum:vue@1.0.3
4-
akryum:vue-apollo@0.0.6
4+
akryum:vue-apollo@0.0.7
55
akryum:vue-coffee@0.0.2
66
akryum:vue-component@0.6.2
77
akryum:vue-component-dev-client@0.0.6

imports/api/apollo/resolvers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Fake word generator
2-
import casual from 'casual';
2+
import faker from 'faker';
33

44
// Let's generate some tags
55
var id = 0;
66
var tags = [];
77
for (let i = 0; i < 42; i++) {
8-
addTag(casual.word);
8+
addTag(faker.random.word());
99
}
1010

1111
function addTag(label) {

imports/ui/AppLayout.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<template lang="jade">
22
.app-layout
33
locale-select.lang-select
4-
span(slot="arrow") v
54
links-menu(:links="links")
65
router-view
76
</template>

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@
55
"meteor-node-stubs": "~0.2.0"
66
},
77
"devDependencies": {
8-
"casual": "^1.5.3",
9-
"express": "^4.13.4",
8+
"apollo-client": "^0.3.30",
109
"apollo-server": "^0.1.5",
10+
"express": "^4.13.4",
11+
"faker": "^3.1.0",
12+
"graphql": "^0.6.1",
13+
"graphql-tag": "^0.1.9",
1114
"graphql-tools": "^0.6.0",
15+
"js-cookie": "^2.1.2",
16+
"locale": "^0.1.0",
1217
"vue": "^1.0.24",
13-
"apollo-client": "^0.3.13",
14-
"vue-router": "^0.7.13",
1518
"vue-i18n": "^4.0.1",
16-
"locale": "^0.1.0",
17-
"js-cookie": "^2.1.2",
18-
"graphql-tag": "^0.1.7",
19+
"vue-router": "^0.7.13",
1920
"vuex": "^1.0.0-rc.2"
2021
}
2122
}

packages/vue-apollo/npm.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"devDependencies": {
3-
"apollo-client": "^0.3.13",
4-
"graphql-tag": "^0.1.7"
3+
"apollo-client": "^0.3.30",
4+
"graphql": "^0.6.1",
5+
"graphql-tag": "^0.1.9"
56
}
67
}

packages/vue-apollo/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'akryum:vue-apollo',
3-
version: '0.0.6',
3+
version: '0.0.7',
44
summary: 'Support for apollo client in vue components',
55
git: 'https://github.com/Akryum/meteor-vue-component',
66
documentation: 'README.md'

0 commit comments

Comments
 (0)