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
On Windows, the globally installed CLI is placed in the {npm_config_prefix} directory, not the {npm_config_prefix}/bin directory.
When in global mode, executables are linked into {prefix}/bin on Unix, or directly into {prefix} on Windows. Ensure that path is in your terminal's PATH environment to run them.
--- folders | npm Docs
However, the current installation logic seems to always install in the bin directory:
On Windows, the globally installed CLI is placed in the
{npm_config_prefix}
directory, not the{npm_config_prefix}/bin
directory.However, the current installation logic seems to always install in the
bin
directory:go-npm/src/common.js
Lines 41 to 43 in 5b4b644
I think this code needs to be fixed like this:
The text was updated successfully, but these errors were encountered: