This repository has been archived by the owner on Mar 14, 2022. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap to npm-shrinkwrap to ensure all installs use the same dependency…
… versions Previously we were using package-lock.json which ensures when running npm install in the origami-build-tools repo that it always installs the same dependency versions. package-lock.json does not ensure that npm install origami-build-tools always uses the same dependency versions though, and that means when someone/something runs npm install origami-build-tools it will be using dependency versions we have not tested against and could be cause errors/bugs in our project. This has happened several times recently with Karma. Using npm-shrinkwrap ensures that npm install and npm install origami-build-tools will both use the same dependency versions, which is what we want.
- Loading branch information