How can I know when to prompt user to run npm install if there are any unmet package.json dependencies?
npm install
I would like to do this, because if any re
re
You can use yarn and do yarn check --verify-tree (you can continue using npm for everything else)
yarn
yarn check --verify-tree
npm