From 6c81cbc832d4921ea1da8a3f65f25d85ca446e87 Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Fri, 30 Aug 2019 10:26:21 +0100 Subject: [PATCH] lint missin install --- scripts/lint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/lint.sh b/scripts/lint.sh index 709d0ac384..080342ad00 100755 --- a/scripts/lint.sh +++ b/scripts/lint.sh @@ -10,6 +10,8 @@ show_help() { DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd "$DIR/../" +npm install + echo "====== Parallel lint =====" npx concurrently -s "all" "npm run lint-lib || exit 1" "npm run stylelint || exit 1" "npm run spellcheck || exit " "ng lint dev || exit 1" "npm run lint-e2e || exit 1" || exit 1