mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
17 lines
181 B
Bash
17 lines
181 B
Bash
#!/bin/sh
|
|
|
|
BOLD='\033[1m'
|
|
NONE='\033[00m'
|
|
|
|
echo "${BOLD}>> Pre-commit —${NONE} Build 🏗️"
|
|
|
|
git stash -q --keep-index
|
|
|
|
npm run build
|
|
|
|
status=$?
|
|
|
|
git stash pop -q
|
|
|
|
exit $status
|