mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 23:27:56 +03:00
13 lines
220 B
Bash
13 lines
220 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Script used to verify the depdencies of the project.
|
||
|
#
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
./scripts/crev/verify.sh || true
|
||
|
|
||
|
echo "Opening the crate $1"
|
||
|
|
||
|
cargo crev crate diff $@ | code - --wait
|
||
|
cargo crev review $@ --diff
|