From b6fa2e702474b7486470da43ddebb041c04acbcc Mon Sep 17 00:00:00 2001 From: Pranshu Chittora Date: Fri, 10 May 2019 13:51:38 +0530 Subject: [PATCH] chore(bin):sets string messages to const made string message to const, previously it was let --- bin/webpack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/webpack.js b/bin/webpack.js index 8c0bfdbe2..ca31cfb0d 100755 --- a/bin/webpack.js +++ b/bin/webpack.js @@ -109,7 +109,7 @@ if (installedClis.length === 0) { )}".` ); - let question = `Do you want to install 'webpack-cli' (yes/no): `; + const question = `Do you want to install 'webpack-cli' (yes/no): `; const questionInterface = readLine.createInterface({ input: process.stdin,