From a628b43cf2e1beebe29128afcc698cc01c1c714b Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Wed, 11 Apr 2018 20:41:46 +0200 Subject: [PATCH] fix(ui): deps + dahsboard plugin --- packages/@vue/cli-service/generator/index.js | 8 +- .../lib/webpack/DashboardPlugin.js | 2 +- .../@vue/cli-ui-addon-build/.eslintrc.json | 1 + .../src/components/AssetList.vue | 1 - .../src/components/BuildProgress.vue | 2 +- packages/@vue/cli-ui/package.json | 2 +- packages/@vue/cli/lib/util/installDeps.js | 31 +- yarn.lock | 276 ++++++++++++++++-- 8 files changed, 275 insertions(+), 48 deletions(-) diff --git a/packages/@vue/cli-service/generator/index.js b/packages/@vue/cli-service/generator/index.js index b7de71ab4e..beb764667d 100644 --- a/packages/@vue/cli-service/generator/index.js +++ b/packages/@vue/cli-service/generator/index.js @@ -3,13 +3,7 @@ module.exports = (api, options) => { api.extendPackage({ scripts: { - 'serve': 'vue-cli-service serve' + ( - // only auto open browser on MacOS where applescript - // can avoid dupilcate window opens - process.platform === 'darwin' - ? ' --open' - : '' - ), + 'serve': 'vue-cli-service serve', 'build': 'vue-cli-service build' }, dependencies: { diff --git a/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js b/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js index 3c86e76d76..3e9d2fb824 100644 --- a/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js +++ b/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js @@ -203,7 +203,7 @@ class DashboardPlugin { const outputPath = compiler.options.output.path statsData.assets.forEach(asset => { asset.fullPath = path.join(outputPath, asset.name) - asset.gzipSize = getGzipSize(assetSources.get(asset.name)) + asset.gzipSize = assetSources && getGzipSize(assetSources.get(asset.name)) }) handler([ diff --git a/packages/@vue/cli-ui-addon-build/.eslintrc.json b/packages/@vue/cli-ui-addon-build/.eslintrc.json index b12f10152c..eb7bfd3812 100644 --- a/packages/@vue/cli-ui-addon-build/.eslintrc.json +++ b/packages/@vue/cli-ui-addon-build/.eslintrc.json @@ -6,6 +6,7 @@ ], "globals": { "ClientAddonApi": false, + "mapSharedData": false, "Vue": false } } diff --git a/packages/@vue/cli-ui-addon-build/src/components/AssetList.vue b/packages/@vue/cli-ui-addon-build/src/components/AssetList.vue index 1f0cb0fff6..d1d83e7ecc 100644 --- a/packages/@vue/cli-ui-addon-build/src/components/AssetList.vue +++ b/packages/@vue/cli-ui-addon-build/src/components/AssetList.vue @@ -62,4 +62,3 @@ export default { text-align right margin-bottom $padding-item - diff --git a/packages/@vue/cli-ui-addon-build/src/components/BuildProgress.vue b/packages/@vue/cli-ui-addon-build/src/components/BuildProgress.vue index 0fc63dbf28..4c1e8ba6a0 100644 --- a/packages/@vue/cli-ui-addon-build/src/components/BuildProgress.vue +++ b/packages/@vue/cli-ui-addon-build/src/components/BuildProgress.vue @@ -29,7 +29,7 @@ import { mapGetters } from 'vuex' export default { computed: { ...mapGetters([ - 'mode', + 'mode' ]) }, diff --git a/packages/@vue/cli-ui/package.json b/packages/@vue/cli-ui/package.json index b167084756..f8906d5ea0 100644 --- a/packages/@vue/cli-ui/package.json +++ b/packages/@vue/cli-ui/package.json @@ -51,7 +51,7 @@ "lint-staged": "^6.0.0", "stylus": "^0.54.5", "stylus-loader": "^3.0.1", - "vue-cli-plugin-apollo": "^0.7.1", + "vue-cli-plugin-apollo": "^0.7.4", "vue-template-compiler": "^2.5.17-beta.0" }, "browserslist": [ diff --git a/packages/@vue/cli/lib/util/installDeps.js b/packages/@vue/cli/lib/util/installDeps.js index 4a9e76c6ea..717c0316ee 100644 --- a/packages/@vue/cli/lib/util/installDeps.js +++ b/packages/@vue/cli/lib/util/installDeps.js @@ -177,20 +177,25 @@ function executeCommand (command, args, targetDir) { if (newLineIndex !== -1) { str = str.substr(newLineIndex) } - const data = JSON.parse(str) - if (data.type === 'step') { - progress.enabled = false - progress.log(data.data.message) - } else if (data.type === 'progressStart') { - progressTotal = data.data.total - } else if (data.type === 'progressTick') { - const time = Date.now() - if (time - progressTime > 20) { - progressTime = time - progress.progress = data.data.current / progressTotal + try { + const data = JSON.parse(str) + if (data.type === 'step') { + progress.enabled = false + progress.log(data.data.message) + } else if (data.type === 'progressStart') { + progressTotal = data.data.total + } else if (data.type === 'progressTick') { + const time = Date.now() + if (time - progressTime > 20) { + progressTime = time + progress.progress = data.data.current / progressTotal + } + } else { + progress.enabled = false } - } else { - progress.enabled = false + } catch (e) { + console.error(e) + console.log(str) } } else { process.stdout.write(buffer) diff --git a/yarn.lock b/yarn.lock index bc3ef2094e..f829a604ed 100644 --- a/yarn.lock +++ b/yarn.lock @@ -529,6 +529,13 @@ core-js "^2.5.3" regenerator-runtime "^0.11.1" +"@babel/runtime@^7.0.0-beta.38": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.0.0-beta.44.tgz#ea5ad6c6fe9a2c1187b025bf42424d28050ee696" + dependencies: + core-js "^2.5.3" + regenerator-runtime "^0.11.1" + "@babel/template@7.0.0-beta.40": version "7.0.0-beta.40" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.40.tgz#034988c6424eb5c3268fe6a608626de1f4410fc8" @@ -592,6 +599,12 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" +"@types/accepts@*": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz#c34bec115cfc746e04fe5a059df4ce7e7b391575" + dependencies: + "@types/node" "*" + "@types/async@2.0.47": version "2.0.47" resolved "https://registry.yarnpkg.com/@types/async/-/async-2.0.47.tgz#f49ba1dd1f189486beb6e1d070a850f6ab4bd521" @@ -604,6 +617,20 @@ version "3.5.18" resolved "https://registry.yarnpkg.com/@types/bluebird/-/bluebird-3.5.18.tgz#6a60435d4663e290f3709898a4f75014f279c4d6" +"@types/body-parser@*": + version "1.16.8" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.16.8.tgz#687ec34140624a3bec2b1a8ea9268478ae8f3be3" + dependencies: + "@types/express" "*" + "@types/node" "*" + +"@types/bunyan@*": + version "1.8.4" + resolved "https://registry.yarnpkg.com/@types/bunyan/-/bunyan-1.8.4.tgz#69c11adc7b50538d45fb68d9ae39d062b9432f38" + dependencies: + "@types/events" "*" + "@types/node" "*" + "@types/chai-jquery@1.1.35": version "1.1.35" resolved "https://registry.yarnpkg.com/@types/chai-jquery/-/chai-jquery-1.1.35.tgz#9a8f0a39ec0851b2768a8f8c764158c2a2568d04" @@ -619,6 +646,44 @@ version "4.0.8" resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.0.8.tgz#d27600e9ba2f371e08695d90a0fe0408d89c7be7" +"@types/connect@*", "@types/connect@^3.4.31": + version "3.4.31" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.31.tgz#1f92d6b117ecc05076c49ecd024f7976e528bad9" + dependencies: + "@types/node" "*" + +"@types/cookies@*": + version "0.7.1" + resolved "https://registry.yarnpkg.com/@types/cookies/-/cookies-0.7.1.tgz#f9f204bd6767d389eea3b87609e30c090c77a540" + dependencies: + "@types/connect" "*" + "@types/express" "*" + "@types/keygrip" "*" + "@types/node" "*" + +"@types/events@*": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@types/events/-/events-1.2.0.tgz#81a6731ce4df43619e5c8c945383b3e62a89ea86" + +"@types/express-serve-static-core@*": + version "4.11.1" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.11.1.tgz#f6f7212382d59b19d696677bcaa48a37280f5d45" + dependencies: + "@types/events" "*" + "@types/node" "*" + +"@types/express@*", "@types/express@^4.0.36": + version "4.11.1" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.11.1.tgz#f99663b3ab32d04cb11db612ef5dd7933f75465b" + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "*" + "@types/serve-static" "*" + +"@types/http-assert@*": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.2.2.tgz#17dfe5a82184a8898935d96fe2eaedd37d22d9a4" + "@types/jest@^22.0.1": version "22.2.0" resolved "https://registry.yarnpkg.com/@types/jest/-/jest-22.2.0.tgz#55ce83139f7ad1b48b414c3927746614c6963c0f" @@ -631,10 +696,46 @@ version "3.2.16" resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.2.16.tgz#04419c404a3194350e7d3f339a90e72c88db3111" +"@types/keygrip@*": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.1.tgz#ff540462d2fb4d0a88441ceaf27d287b01c3d878" + +"@types/koa-bodyparser@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/koa-bodyparser/-/koa-bodyparser-4.2.0.tgz#04febc567f3d3dd40e3d1a0e095cdf7b07c4d7ce" + dependencies: + "@types/koa" "*" + +"@types/koa-compose@*": + version "3.2.2" + resolved "https://registry.yarnpkg.com/@types/koa-compose/-/koa-compose-3.2.2.tgz#dc106e000bbf92a3ac900f756df47344887ee847" + +"@types/koa-router@^7.0.27": + version "7.0.27" + resolved "https://registry.yarnpkg.com/@types/koa-router/-/koa-router-7.0.27.tgz#4993d50cb9efdfcfb11f16c726a4b34f8fb3e0d4" + dependencies: + "@types/koa" "*" + +"@types/koa@*", "@types/koa@^2.0.39": + version "2.0.45" + resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.0.45.tgz#133cbda6cc8d12b73434b5d9663898c833f80aa2" + dependencies: + "@types/accepts" "*" + "@types/cookies" "*" + "@types/events" "*" + "@types/http-assert" "*" + "@types/keygrip" "*" + "@types/koa-compose" "*" + "@types/node" "*" + "@types/lodash@4.14.87": version "4.14.87" resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.87.tgz#55f92183b048c2c64402afe472f8333f4e319a6b" +"@types/mime@*": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.0.tgz#5a7306e367c539b9f6543499de8dd519fac37a8b" + "@types/minimatch@3.0.1": version "3.0.1" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.1.tgz#b683eb60be358304ef146f5775db4c0e3696a550" @@ -651,6 +752,21 @@ version "9.4.6" resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.6.tgz#d8176d864ee48753d053783e4e463aec86b8d82e" +"@types/restify@^5.0.7": + version "5.0.7" + resolved "https://registry.yarnpkg.com/@types/restify/-/restify-5.0.7.tgz#09b736ad96af04814f9501b7b50e84dabcd77228" + dependencies: + "@types/bunyan" "*" + "@types/node" "*" + "@types/spdy" "*" + +"@types/serve-static@*": + version "1.13.1" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.1.tgz#1d2801fa635d274cd97d4ec07e26b21b44127492" + dependencies: + "@types/express-serve-static-core" "*" + "@types/mime" "*" + "@types/sinon-chai@2.7.29": version "2.7.29" resolved "https://registry.yarnpkg.com/@types/sinon-chai/-/sinon-chai-2.7.29.tgz#4db01497e2dd1908b2bd30d1782f456353f5f723" @@ -666,6 +782,12 @@ version "4.0.0" resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-4.0.0.tgz#9a93ffa4ee1329e85166278a5ed99f81dc4c8362" +"@types/spdy@*": + version "3.4.4" + resolved "https://registry.yarnpkg.com/@types/spdy/-/spdy-3.4.4.tgz#3282fd4ad8c4603aa49f7017dd520a08a345b2bc" + dependencies: + "@types/node" "*" + "@types/strip-bom@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/strip-bom/-/strip-bom-3.0.0.tgz#14a8ec3956c2e81edb7520790aecf21c290aebd2" @@ -929,6 +1051,14 @@ apollo-cache-control@^0.0.x: dependencies: graphql-extensions "^0.0.x" +apollo-cache-inmemory@^1.0.0: + version "1.1.12" + resolved "https://registry.yarnpkg.com/apollo-cache-inmemory/-/apollo-cache-inmemory-1.1.12.tgz#ab489bf046b3e026556ab28bdebb6e010cac9531" + dependencies: + apollo-cache "^1.1.7" + apollo-utilities "^1.0.11" + graphql-anywhere "^4.1.8" + apollo-cache-inmemory@^1.1.10: version "1.1.10" resolved "https://registry.yarnpkg.com/apollo-cache-inmemory/-/apollo-cache-inmemory-1.1.10.tgz#472442c6c59395159ae7d686ea33056248b26125" @@ -943,6 +1073,26 @@ apollo-cache@^1.1.5: dependencies: apollo-utilities "^1.0.9" +apollo-cache@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/apollo-cache/-/apollo-cache-1.1.7.tgz#5817018a2fbfc05a21ba319bd17a3e7538110cc5" + dependencies: + apollo-utilities "^1.0.11" + +apollo-client@^2.0.1: + version "2.2.8" + resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.2.8.tgz#b604d31ab2d2dd00db3105d8793b93ee02ce567e" + dependencies: + "@types/zen-observable" "^0.5.3" + apollo-cache "^1.1.7" + apollo-link "^1.0.0" + apollo-link-dedup "^1.0.0" + apollo-utilities "^1.0.11" + symbol-observable "^1.0.2" + zen-observable "^0.7.0" + optionalDependencies: + "@types/async" "2.0.47" + apollo-client@^2.2.6: version "2.2.6" resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.2.6.tgz#38b5a197976f3c22b63623c455d4c4606e420b66" @@ -957,25 +1107,38 @@ apollo-client@^2.2.6: optionalDependencies: "@types/async" "2.0.47" -apollo-engine-binary-darwin@0.2018.2-111-gb13195fb0: - version "0.2018.2-111-gb13195fb0" - resolved "https://registry.yarnpkg.com/apollo-engine-binary-darwin/-/apollo-engine-binary-darwin-0.2018.2-111-gb13195fb0.tgz#5e5fcbde78a5c6ad818b07ea7c850c5024b70f97" +apollo-engine-binary-darwin@0.2018.4-20-g7a8822c14: + version "0.2018.4-20-g7a8822c14" + resolved "https://registry.yarnpkg.com/apollo-engine-binary-darwin/-/apollo-engine-binary-darwin-0.2018.4-20-g7a8822c14.tgz#d3aad6b4aceb6063d51ca56324e1b9c4004cc72c" -apollo-engine-binary-linux@0.2018.2-111-gb13195fb0: - version "0.2018.2-111-gb13195fb0" - resolved "https://registry.yarnpkg.com/apollo-engine-binary-linux/-/apollo-engine-binary-linux-0.2018.2-111-gb13195fb0.tgz#fede5c64dacd117012f81734f317ff60554d78ab" +apollo-engine-binary-linux@0.2018.4-20-g7a8822c14: + version "0.2018.4-20-g7a8822c14" + resolved "https://registry.yarnpkg.com/apollo-engine-binary-linux/-/apollo-engine-binary-linux-0.2018.4-20-g7a8822c14.tgz#6da7e5773206962bc28620ca3feb02d523268629" -apollo-engine-binary-windows@0.2018.2-111-gb13195fb0: - version "0.2018.2-111-gb13195fb0" - resolved "https://registry.yarnpkg.com/apollo-engine-binary-windows/-/apollo-engine-binary-windows-0.2018.2-111-gb13195fb0.tgz#cd0a01af2842946fcb0733c125ff7bd6b3e11548" +apollo-engine-binary-windows@0.2018.4-20-g7a8822c14: + version "0.2018.4-20-g7a8822c14" + resolved "https://registry.yarnpkg.com/apollo-engine-binary-windows/-/apollo-engine-binary-windows-0.2018.4-20-g7a8822c14.tgz#7a1ee3ef3db923f65d172c37864dd4d5867a93ce" -apollo-engine@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/apollo-engine/-/apollo-engine-1.0.1.tgz#a3c4ed0318754bc2ce23bc088f108ca87c26988e" +apollo-engine@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/apollo-engine/-/apollo-engine-1.1.0.tgz#6d21b7136b35c2eb4fc4bc51d99c21a536fc8b14" + dependencies: + "@types/connect" "^3.4.31" + "@types/express" "^4.0.36" + "@types/koa" "^2.0.39" + "@types/koa-bodyparser" "^4.2.0" + "@types/koa-router" "^7.0.27" + "@types/restify" "^5.0.7" optionalDependencies: - apollo-engine-binary-darwin "0.2018.2-111-gb13195fb0" - apollo-engine-binary-linux "0.2018.2-111-gb13195fb0" - apollo-engine-binary-windows "0.2018.2-111-gb13195fb0" + apollo-engine-binary-darwin "0.2018.4-20-g7a8822c14" + apollo-engine-binary-linux "0.2018.4-20-g7a8822c14" + apollo-engine-binary-windows "0.2018.4-20-g7a8822c14" + +apollo-link-context@^1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/apollo-link-context/-/apollo-link-context-1.0.7.tgz#3719697a677d3af5de500b7e4cbb6c0d0bf3bef3" + dependencies: + apollo-link "^1.2.1" apollo-link-dedup@^1.0.0: version "1.0.8" @@ -989,13 +1152,20 @@ apollo-link-http-common@^0.2.3: dependencies: apollo-link "^1.2.1" -apollo-link-http@^1.5.3: +apollo-link-http@^1.0.0, apollo-link-http@^1.5.3: version "1.5.3" resolved "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.3.tgz#3aa0d3ecfe5666ef0c360f359c425ff6ea1d285b" dependencies: apollo-link "^1.2.1" apollo-link-http-common "^0.2.3" +apollo-link-persisted-queries@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/apollo-link-persisted-queries/-/apollo-link-persisted-queries-0.1.0.tgz#addc4b4f5b4755fb9909cd87685a8b50d7646d79" + dependencies: + apollo-link "^1.0.3" + hash.js "^1.1.3" + apollo-link-state@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/apollo-link-state/-/apollo-link-state-0.4.0.tgz#916dab5fa4ecc18d99dd9664b1d22476f4b280a6" @@ -1009,7 +1179,7 @@ apollo-link-ws@^1.0.0: dependencies: apollo-link "^1.2.1" -apollo-link@^1.0.0, apollo-link@^1.1.0, apollo-link@^1.2.1: +apollo-link@^1.0.0, apollo-link@^1.0.3, apollo-link@^1.1.0, apollo-link@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.1.tgz#c120b16059f9bd93401b9f72b94d2f80f3f305d2" dependencies: @@ -1042,6 +1212,14 @@ apollo-tracing@^0.1.0: dependencies: graphql-extensions "^0.0.x" +apollo-upload-client@^7.0.0-alpha.4: + version "7.1.0" + resolved "https://registry.yarnpkg.com/apollo-upload-client/-/apollo-upload-client-7.1.0.tgz#13b48b24c6c5b454c6c62ee9c01726a6026ea0f4" + dependencies: + "@babel/runtime" "^7.0.0-beta.40" + apollo-link-http-common "^0.2.3" + extract-files "^3.1.0" + apollo-upload-server@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/apollo-upload-server/-/apollo-upload-server-5.0.0.tgz#c953b523608313966e0c8444637f4ae8ef77d5bc" @@ -1054,6 +1232,10 @@ apollo-utilities@^1.0.0, apollo-utilities@^1.0.1, apollo-utilities@^1.0.6, apoll version "1.0.8" resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.8.tgz#74d797d38953d2ba35e16f880326e2abcbc8b016" +apollo-utilities@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.11.tgz#cd36bfa6e5c04eea2caf0c204a0f38a0ad550802" + apollo-utilities@^1.0.9: version "1.0.9" resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.9.tgz#16f9f2f92fd6c651d497aba6f2747ce17d87d80a" @@ -3713,6 +3895,13 @@ eslint-plugin-cypress@^2.0.1: dependencies: globals "^11.0.1" +eslint-plugin-graphql@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-graphql/-/eslint-plugin-graphql-1.5.0.tgz#1f0861b6499906f7ce153f9e83633659e4374ef6" + dependencies: + graphql-config "~1.0.9" + lodash "^4.11.1" + eslint-plugin-html@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/eslint-plugin-html/-/eslint-plugin-html-4.0.2.tgz#0e56149e42c2ffc3f0df6261a8bb96b1a9f2280d" @@ -4088,6 +4277,12 @@ extglob@^2.0.4: snapdragon "^0.8.1" to-regex "^3.0.1" +extract-files@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-3.1.0.tgz#b70424c9d4a1a4208efe22069388f428e4ae00f1" + dependencies: + "@babel/runtime" "^7.0.0-beta.38" + extract-from-css@^0.4.4: version "0.4.4" resolved "https://registry.yarnpkg.com/extract-from-css/-/extract-from-css-0.4.4.tgz#1ea7df2e7c7c6eb9922fa08e8adaea486f6f8f92" @@ -4817,6 +5012,12 @@ graphql-anywhere@^4.1.6: dependencies: apollo-utilities "^1.0.9" +graphql-anywhere@^4.1.8: + version "4.1.8" + resolved "https://registry.yarnpkg.com/graphql-anywhere/-/graphql-anywhere-4.1.8.tgz#23882e6a16ec824febbe5bca40937cdd76c5acdc" + dependencies: + apollo-utilities "^1.0.11" + graphql-config@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-2.0.0.tgz#daf69091055c6f675d63893a2d14c48f3fec3327" @@ -4827,6 +5028,16 @@ graphql-config@2.0.0: lodash "^4.17.4" minimatch "^3.0.4" +graphql-config@~1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-1.0.9.tgz#8fa416a7c2bdb8f62f441324775dd3ff8a266652" + dependencies: + graphql "^0.11.7" + graphql-request "^1.4.0" + js-yaml "^3.10.0" + minimatch "^3.0.4" + rimraf "^2.6.2" + graphql-extensions@^0.0.x: version "0.0.8" resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.0.8.tgz#d14d6e06db466a7f90fb97d75b657ae730278b09" @@ -4882,6 +5093,12 @@ graphql-type-json@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/graphql-type-json/-/graphql-type-json-0.2.0.tgz#34c1a5fc2b7707a367c436482b253dbeebf1130e" +graphql@^0.11.7: + version "0.11.7" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.11.7.tgz#e5abaa9cb7b7cccb84e9f0836bf4370d268750c6" + dependencies: + iterall "1.1.3" + graphql@^0.13.0, graphql@^0.13.1: version "0.13.1" resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.13.1.tgz#9b3db3d8e40d1827e4172404bfdd2e4e17a58b55" @@ -5032,7 +5249,7 @@ hash-sum@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" -hash.js@^1.0.0, hash.js@^1.0.3: +hash.js@^1.0.0, hash.js@^1.0.3, hash.js@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" dependencies: @@ -5870,6 +6087,10 @@ isurl@^1.0.0-alpha5: has-to-string-tag-x "^1.2.0" is-object "^1.0.1" +iterall@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9" + iterall@^1.1.3, iterall@^1.2.0, iterall@^1.2.1: version "1.2.2" resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" @@ -6887,7 +7108,7 @@ lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" -lodash@4, lodash@4.x, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1: +lodash@4, lodash@4.x, lodash@^4.11.1, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1: version "4.17.5" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" @@ -10663,7 +10884,7 @@ vm-browserify@0.0.4: dependencies: indexof "0.0.1" -vue-apollo@^3.0.0-beta.5: +vue-apollo@^3.0.0-alpha.1, vue-apollo@^3.0.0-beta.5: version "3.0.0-beta.5" resolved "https://registry.yarnpkg.com/vue-apollo/-/vue-apollo-3.0.0-beta.5.tgz#d0aabd19683e50cd1ab2d24e2827e8fb579ff78e" dependencies: @@ -10675,11 +10896,11 @@ vue-class-component@^6.0.0: version "6.2.0" resolved "https://registry.yarnpkg.com/vue-class-component/-/vue-class-component-6.2.0.tgz#7adb1daa9a868c75f30f97f33f4f1b94aee62089" -vue-cli-plugin-apollo@^0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/vue-cli-plugin-apollo/-/vue-cli-plugin-apollo-0.7.1.tgz#c4d941fc4d12f245563b4d9ca51289b276ec5c4c" +vue-cli-plugin-apollo@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/vue-cli-plugin-apollo/-/vue-cli-plugin-apollo-0.7.4.tgz#921293d534a87b594aaa9fc271f853139705f269" dependencies: - apollo-engine "^1.0.1" + apollo-engine "^1.1.0" apollo-server-express "^1.3.2" apollo-upload-server "^5.0.0" body-parser "^1.18.2" @@ -10813,6 +11034,13 @@ vue-style-loader@^4.0.1: hash-sum "^1.0.2" loader-utils "^1.0.2" +vue-template-compiler@^2.5.13: + version "2.5.16" + resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.16.tgz#93b48570e56c720cdf3f051cc15287c26fbd04cb" + dependencies: + de-indent "^1.0.2" + he "^1.1.0" + vue-template-compiler@^2.5.17-beta.0: version "2.5.17-beta.0" resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.17-beta.0.tgz#6653d4029bd6fc427de616ce626e7f1db63e615c"