spreed/check-vuejs-builds.sh

12 строки
354 B
Bash
Executable File

#!/bin/bash
set -e
# Build the Vue files
make build-js-production
git status
bash -c "[[ ! \"`git status --porcelain js`\" ]] || ( echo 'Uncommitted changes in built Vue files' && exit 1 )"
bash -c "[[ ! \"`git status --porcelain package-lock.json`\" ]] || ( git diff package-lock.json && echo 'Uncommitted changes in package-lock.json' && exit 1 )"