chore(bin):sets string messages to const

made string message to const, previously it was let
This commit is contained in:
Pranshu Chittora 2019-05-10 13:51:38 +05:30
rodič 069271decf
revize b6fa2e7024
V databázi nebyl nalezen žádný známý klíč pro tento podpis
ID GPG klíče: 83CB43197696B131
1 změnil soubory, kde provedl 1 přidání a 1 odebrání

Zobrazit soubor

@ -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,