mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
14 lines
223 B
Bash
Executable File
14 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Script used to verify the dependencies 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
|