First, we generated a npm-shrinkwrap.json file by running npm shrinkwrap --dev. Thanks to npm3, this file will be automatically updated every time dependencies are updated (e.g., either --save or --save-dev flags are passed on the npm install, npm upgrade, and npm uninstall commands).
Other Changes
N/A
Environment / Configuration Changes
Yes, run npm install
Notes
Overall, this whole process makes me want to (re-)investigate switching from npm to yarn.
Fixes #87.
Overview
First, we generated a
npm-shrinkwrap.json
file by runningnpm shrinkwrap --dev
. Thanks to npm3, this file will be automatically updated every time dependencies are updated (e.g., either--save
or--save-dev
flags are passed on thenpm install
,npm upgrade
, andnpm uninstall
commands).Other Changes
N/A
Environment / Configuration Changes
Yes, run
npm install
Notes
Overall, this whole process makes me want to (re-)investigate switching from
npm
toyarn
.