Support npm-shrinkwrap.json out-of-the-box

This commit is contained in:
AJ Jordan 2022-03-09 17:32:58 -05:00
parent 78faa555e1
commit eef51e94ea
4 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ export interface PackageManagerInfo {
export const supportedPackageManagers: SupportedPackageManagers = {
npm: {
lockFilePatterns: ['package-lock.json', 'yarn.lock'],
lockFilePatterns: ['package-lock.json', 'npm-shrinkwrap.json', 'yarn.lock'],
getCacheFolderCommand: 'npm config get cache'
},
pnpm: {