The Problem
When I pull my team's code and run npm install
a number of items in package-lock.json
have their resolved
property change from a URL to false
. E.g.
"debug": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
…
},
// changes to
"debug": {
"version": "3.2.6",
"resolved": false,
…
},
The Ask
I would like this not to happen. I don't understand why it is happening or what could be causing it. It seems like a pretty odd and serious bug. What would happen if I checked this in and deployed? ♂️
The Details
npm -v #=> 6.14.5
node -v #=> v12.13.0