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
When running npm install I initially received lots of security warnings from npm audit.
The reason for this is because you have set up your package.json to pull the latest major version of each of the project dependencies, which are now causing breaking changes.
I suggest the best way to resolve this is to change the ^ prefix to ~ this will only then pull the latest minor (non breaking changes). You could also simply remove the prefix altogether and NPM will only pull the exact version of the file you've specified.
HTH
Rob
The text was updated successfully, but these errors were encountered:
Hi Ray,
When running npm install I initially received lots of security warnings from npm audit.
The reason for this is because you have set up your package.json to pull the latest major version of each of the project dependencies, which are now causing breaking changes.
I suggest the best way to resolve this is to change the ^ prefix to ~ this will only then pull the latest minor (non breaking changes). You could also simply remove the prefix altogether and NPM will only pull the exact version of the file you've specified.
HTH
Rob
The text was updated successfully, but these errors were encountered: