Move back to package-lock v2 (#176)
Also adds a CI step to ensure that we're not merging lockfile v1. Reviewed-on: #176 Co-authored-by: Aditya Thakral <a3thakra@csclub.uwaterloo.ca> Co-committed-by: Aditya Thakral <a3thakra@csclub.uwaterloo.ca>pull/178/head
parent
72709f5d6e
commit
b6d0544e3e
@ -0,0 +1,10 @@ |
||||
const lockfile = require('./package-lock.json') |
||||
|
||||
if (lockfile.lockfileVersion !== 2) { |
||||
console.error(` |
||||
Please upgrade to npm v7 and revert changes to the lockfile. |
||||
|
||||
- \`npm i -g npm\` to upgrade.
|
||||
`.trim())
|
||||
process.exit(1) |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue