From 643ab761401e28709e1be3aa5c93022216ace55d Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Mon, 8 Jun 2020 21:22:30 +0200 Subject: [PATCH] fix(generator): wrong apollo server command displayed --- generator/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/index.js b/generator/index.js index 4496c08..2323714 100644 --- a/generator/index.js +++ b/generator/index.js @@ -198,7 +198,7 @@ module.exports = (api, options, rootOptions) => { } if (options.addServer) { - api.exitLog(`Start the GraphQL API Server with ${chalk.cyan(`${hasYarn() ? 'yarn' : 'npm'} run apollo:dev`)}`, 'info') + api.exitLog(`Start the GraphQL API Server with ${chalk.cyan(`${hasYarn() ? 'yarn' : 'npm'} run apollo`)}`, 'info') if (options.addMocking) { api.exitLog(`Customize the mocks in ${chalk.cyan('apollo-server/mocks.js')}`, 'info') }