mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
9 lines
240 B
Bash
Executable File
9 lines
240 B
Bash
Executable File
#!/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
|