chore(dependencies): add missing package lock files to packages (#21951)

- Add `package-lock.json` to `angular`, `angular-server`, `react`, `react-router` and the root 
- Ran `npm audit` on all, fixed vulnerabilities
- Ran `npm outdated` on all, updated minor and patch versions
- Ran `npm update` on all
This commit is contained in:
Brandy Carney
2020-08-21 16:00:40 -04:00
committed by GitHub
parent 00eac33053
commit 6dae5d1dfe
16 changed files with 34413 additions and 22 deletions

View File

@@ -131,7 +131,7 @@ function preparePackage(tasks, package, version, install) {
title: `${pkg.name}: install npm dependencies`,
task: async () => {
await fs.remove(path.join(projectRoot, 'node_modules'));
await execa('npm', ['i'], { cwd: projectRoot });
await execa('npm', ['ci'], { cwd: projectRoot });
}
});
}