diff --git a/examples/apollo-federation/gateway/index.js b/examples/apollo-federation/gateway/index.js index 6ff87c4af..43e5e014d 100644 --- a/examples/apollo-federation/gateway/index.js +++ b/examples/apollo-federation/gateway/index.js @@ -15,7 +15,9 @@ async function main() { // Start the server and explore http://localhost:4000/graphql const server = createServer(yoga) server.listen(4000, () => { - console.info(`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`) + console.info( + `Server is running on http://localhost:4000${yoga.graphqlEndpoint}`, + ) }) } diff --git a/examples/hello-world/index.js b/examples/hello-world/index.js index b1c79dd5b..94b10a970 100644 --- a/examples/hello-world/index.js +++ b/examples/hello-world/index.js @@ -30,5 +30,7 @@ const yoga = createYoga({ const server = createServer(yoga) server.listen(4000, () => { - console.log(`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`) + console.log( + `Server is running on http://localhost:4000${yoga.graphqlEndpoint}`, + ) })