mirror of https://github.com/zulip/zulip.git
9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -eu
|
||
|
if ! "$(dirname "$0")/../node_modules/.bin/yarn-deduplicate" --fail --list; then
|
||
|
echo
|
||
|
echo "Duplicates could be shared in yarn.lock. Run:"
|
||
|
echo "node_modules/.bin/yarn-deduplicate; yarn"
|
||
|
false
|
||
|
fi
|