Skip to content

Commit c086dfa

Browse files
committed
fix lint
1 parent 1abef28 commit c086dfa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

bin/webpack.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ if (!webpackCliInstalled) {
4343

4444
const commandToBeRun = `${packageManager} ${options.join(" ")}`;
4545

46-
const question = `Would you like to install webpack-cli? (That will run ${commandToBeRun}) `;
46+
const question = `Would you like to install webpack-cli? (That will run ${
47+
commandToBeRun
48+
}) `;
4749

4850
console.error("The CLI moved into a separate package: webpack-cli");
4951
const questionInterface = readLine.createInterface({
@@ -68,7 +70,9 @@ if (!webpackCliInstalled) {
6870
}
6971
default: {
7072
console.error("The CLI moved into a separate package: webpack-cli");
71-
console.error("It needs to be installed alongside webpack to use the CLI");
73+
console.error(
74+
"It needs to be installed alongside webpack to use the CLI"
75+
);
7276
process.exitCode = 1;
7377
questionInterface.close();
7478
break;

0 commit comments

Comments
 (0)