I have a problem with a project in which we use node and brunch. The problem is relevant for the brunch, but it can happen for any module, I think.
The easiest way to play it now is to do the following in a new folder:
npm init npm install --save-dev brunch
The problem is that the brunch depends on the log, which in turn depends on ansi-color, which no longer has an entry in npmregistry:
https://registry.npmjs.org/ansi-color
I think it could be a github project: https://github.com/loopj/commonjs-ansi-color
In any case, I cannot continue, and all of our assemblies do not work, because they cannot get the given dependency.
I could somehow use npm trimming, but it depends on the modules already existing in node_modules that I don't see right now.
So, how can I get npm to use ansi-color from another location or ignore the dependency?
source share