From c086dfa14df4e02d5bb7abd4c715c601ce6267b7 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Fri, 9 Mar 2018 09:17:39 +0100 Subject: [PATCH] fix lint --- bin/webpack.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bin/webpack.js b/bin/webpack.js index bdce1fb8b..3c1aa218a 100755 --- a/bin/webpack.js +++ b/bin/webpack.js @@ -43,7 +43,9 @@ if (!webpackCliInstalled) { const commandToBeRun = `${packageManager} ${options.join(" ")}`; - const question = `Would you like to install webpack-cli? (That will run ${commandToBeRun}) `; + const question = `Would you like to install webpack-cli? (That will run ${ + commandToBeRun + }) `; console.error("The CLI moved into a separate package: webpack-cli"); const questionInterface = readLine.createInterface({ @@ -68,7 +70,9 @@ if (!webpackCliInstalled) { } default: { console.error("The CLI moved into a separate package: webpack-cli"); - console.error("It needs to be installed alongside webpack to use the CLI"); + console.error( + "It needs to be installed alongside webpack to use the CLI" + ); process.exitCode = 1; questionInterface.close(); break;