You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #765 Don't warn about npm/yarn unless there is a ux-package in vendor/ (nicolas-grekas)
This PR was merged into the 1.12-dev branch.
Discussion
----------
Don't warn about npm/yarn unless there is a ux-package in vendor/
A lighter version of #737
Commits
-------
9b26932 Don't warn about npm/yarn unless there is a ux-package in vendor/
$this->io->writeError('<info>Synchronizing package.json with PHP packages</>');
595
-
$synchronizer->synchronize($packagesNames);
596
-
$this->io->writeError('Don\'t forget to run <comment>npm install --force</> or <comment>yarn install --force</> to refresh your JavaScript dependencies!');
594
+
if ($synchronizer->synchronize($packagesNames)) {
595
+
$this->io->writeError('<info>Synchronizing package.json with PHP packages</>');
596
+
$this->io->writeError('<warning>Don\'t forget to run npm install --force or yarn install --force to refresh your JavaScript dependencies!</>');
0 commit comments