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
In this example, npx is using the locally-installed version of bower (node_modules/.bin/bower). update-notifier is correctly noticing that we're not using the latest version, but it suggests that npm i -g bower will fix that, which it will not, since it'll still use the locally-installed version, which is old.
I think we should make the isGlobal option default to auto-detecting whether it's installed globally or locally. Right now you have to set it manually. Can use the is-installed-globally package. Pull request welcome.
In this example,
npx
is using the locally-installed version of bower (node_modules/.bin/bower
).update-notifier
is correctly noticing that we're not using the latest version, but it suggests thatnpm i -g bower
will fix that, which it will not, since it'll still use the locally-installed version, which is old.The text was updated successfully, but these errors were encountered: