LearnersGuild / echo-cli

Option parser for Learners Guild commands.
MIT License
0 stars 4 forks source link

lock dependencies using `npm shrinkwrap --dev` #88

Closed jeffreywescott closed 7 years ago

jeffreywescott commented 7 years ago

Fixes #87.

Overview

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.