Open gwhobbs opened 2 years ago
npm install [-g] mup stopped working (sh: patch-package: command not found) due to an issue with underscore, an indirect dependency.
npm install [-g] mup
sh: patch-package: command not found
More info about the issue: https://github.com/jashkenas/underscore/issues/2967
This is the workaround I am using in my CI environment for now: npm i -g mup underscore@1.13.4
npm i -g mup underscore@1.13.4
Posting in case this might be useful to someone else.
I will work on publishing a fix. We used to publish mup with a shrinkwrap.json to avoid these types of problems, but npm had too many bugs with them that we had to work around so we stopped doing it.
npm install [-g] mup
stopped working (sh: patch-package: command not found
) due to an issue with underscore, an indirect dependency.More info about the issue: https://github.com/jashkenas/underscore/issues/2967
This is the workaround I am using in my CI environment for now:
npm i -g mup underscore@1.13.4
Posting in case this might be useful to someone else.