Ignore other dependencies and devDependencies when running npm install. Since the era of package-lock files,install-local ../foo would both install ../foo AND the packages listed in package-lock.json. This behavior was an unfortunate side effect.
BREAKING CHANGE: Other dependencies will no longer be installed. If you want the old behaviour, be sure to run npm install before you run install-local.
Ignore other
dependencies
anddevDependencies
when runningnpm install
. Since the era of package-lock files,install-local ../foo
would both install../foo
AND the packages listed in package-lock.json. This behavior was an unfortunate side effect.BREAKING CHANGE: Other dependencies will no longer be installed. If you want the old behaviour, be sure to run
npm install
before you runinstall-local
.Fixes #23