Skip to content

Commit

Permalink
Update init.php
Browse files Browse the repository at this point in the history
  • Loading branch information
yurikuzn authored Sep 27, 2023
1 parent 959cf45 commit 5f56915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
$author = trim(fgets($fh));
fclose($fh);

fwrite(\STDOUT, "Do you want to use ES6? [y/n]\n");
fwrite(\STDOUT, "Do you want to use ES6 modules in frontend? [y/n]\n");
$fh = fopen('php://stdin', 'r');
$es6 = trim(fgets($fh)) === 'y';
$bundled = $es6 ? "true" : "false";
Expand Down

0 comments on commit 5f56915

Please sign in to comment.