Appeasing the mighty linter

This commit is contained in:
Luke Towers 2022-09-04 13:24:33 -06:00
parent 6e13c7b4ff
commit c4d20a1560

View File

@ -171,13 +171,15 @@ class MixInstall extends Command
&& !in_array($packagePath, $ignoredPackages)
) {
if (
$this->confirm(sprintf(
"Detected %s (%s), should it be added to your package.json?",
$name,
$packagePath
),
true
)) {
$this->confirm(
sprintf(
"Detected %s (%s), should it be added to your package.json?",
$name,
$packagePath
),
true
)
) {
$workspacesPackages[] = $packagePath;
$this->info(sprintf(
'Adding %s (%s) to the workspaces.packages property in package.json',