blob: 5e27fa76738bfa48a7c2c667db5e3a13c49963ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash -e
## tools/check-lockfiles
##
## Verifies that the various dependency lockfiles used in this project match
## the dependencies configured.
cd "$(dirname "$0")/.."
npm ci --dry-run
cargo update --locked --workspace
|