diff options
author | Phil Hughes <me@iamphill.com> | 2018-11-27 15:10:40 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-11-27 15:10:40 +0000 |
commit | 50e21a89a0009813b9f090288b22c64c5cefbd58 (patch) | |
tree | 7a142c12573f872f14ac366ec00082c650664592 /package.json | |
parent | 15b4a8f93aaf313b8197ca381f529b00bd231a20 (diff) | |
download | gitlab-ce-50e21a89a0009813b9f090288b22c64c5cefbd58.tar.gz |
Suggests issues when typing title
This suggests possibly related issues when the user types a title.
This uses GraphQL to allow the frontend to request the exact
data that is requires. We also get free caching through the Vue Apollo
plugin.
With this we can include the ability to import .graphql files in JS
and Vue files.
Also we now have the Vue test utils library to make testing
Vue components easier.
Closes #22071
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package.json b/package.json index 64df2532977..62e48625c05 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,8 @@ "@babel/preset-env": "^7.1.0", "@gitlab/svgs": "^1.38.0", "@gitlab/ui": "^1.11.0", + "apollo-boost": "^0.1.20", + "apollo-client": "^2.4.5", "autosize": "^4.0.0", "axios": "^0.17.1", "babel-loader": "^8.0.4", @@ -60,6 +62,7 @@ "formdata-polyfill": "^3.0.11", "fuzzaldrin-plus": "^0.5.0", "glob": "^7.1.2", + "graphql": "^14.0.2", "imports-loader": "^0.8.0", "jed": "^1.1.1", "jquery": "^3.2.1", @@ -97,6 +100,7 @@ "url-loader": "^1.1.1", "visibilityjs": "^1.2.4", "vue": "^2.5.17", + "vue-apollo": "^3.0.0-beta.25", "vue-loader": "^15.4.2", "vue-resource": "^1.5.0", "vue-router": "^3.0.1", @@ -127,6 +131,7 @@ "eslint-plugin-jasmine": "^2.10.1", "gettext-extractor": "^3.3.2", "gettext-extractor-vue": "^4.0.1", + "graphql-tag": "^2.10.0", "istanbul": "^0.4.5", "jasmine-core": "^2.9.0", "jasmine-diff": "^0.1.3", |