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
I have a few Node.js versions installed via nvm but I also have one from Homebrew. nvm supports such scenario; it lists the globally installed Node as "system", allows to switch to it etc.
In one of my projects I require a Node version matching >=6.5.0 <7.0.0; other versions are rejected. However, the global package is now at 7.1.1. I have a proper .nvmrc (with contents: 6) in my project but now it seems not invoked. The hooks get invoked with the global Node.js and the whole script fails.
I've seen the following entry in the 0.13.0 changelog entry:
Fixes issue with OS X + brew where nvm was loaded even when npm was already present
It seems this change is doing exactly opposite to what I'd expect. :/
It works fine in 0.12.0.
The text was updated successfully, but these errors were encountered:
I have a few Node.js versions installed via nvm but I also have one from Homebrew. nvm supports such scenario; it lists the globally installed Node as "system", allows to switch to it etc.
In one of my projects I require a Node version matching
>=6.5.0 <7.0.0
; other versions are rejected. However, the global package is now at 7.1.1. I have a proper.nvmrc
(with contents:6
) in my project but now it seems not invoked. The hooks get invoked with the global Node.js and the whole script fails.I've seen the following entry in the
0.13.0
changelog entry:It seems this change is doing exactly opposite to what I'd expect. :/
It works fine in 0.12.0.
The text was updated successfully, but these errors were encountered: