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
Node and NPM should ideally be specified in engines property in package.json, and maybe locked via .nvmrc/.node-version files too.
Even with Node v12 as per current DP prerequisites it's clear that different NPM versions were used to resolve packages and create package-lock.json files.
npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I'll try to do my best with it!
which then results in different package-lock.json files:
Node and NPM should ideally be specified in
engines
property inpackage.json
, and maybe locked via.nvmrc
/.node-version
files too.Even with Node v12 as per current DP prerequisites it's clear that different NPM versions were used to resolve packages and create
package-lock.json
files.Running
make build
with[email protected]
and[email protected]
(that it comes with by default) results with:which then results in different
package-lock.json
files:Oddly enough
src/package-lock.json
is in.gitignore
file and yet it's there in the repo. 🤷♂️The text was updated successfully, but these errors were encountered: