mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 12:05:41 +03:00
8 lines
310 B
Bash
Executable File
8 lines
310 B
Bash
Executable File
OUT=$(yarn | grep -E "(YN0002|YN0059|YN0060)" | grep -E $1)
|
|
if [ -z "$OUT" ]; then
|
|
echo "No Peer Dependency Errors Found."
|
|
else
|
|
echo "$OUT"
|
|
echo "Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code"
|
|
exit 1
|
|
fi |