30 lines
675 B
Bash
Executable File
30 lines
675 B
Bash
Executable File
#!/bin/bash
|
|
SCRIPTDIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
WD=`pwd`
|
|
# get the current vuejs mode
|
|
VUEMODE=`$SCRIPTDIR/vuemode.sh query`
|
|
if [[ $? -eq 1 ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
# switch vuejs to prod mode
|
|
$SCRIPTDIR/vuemode.sh prod
|
|
|
|
# run the grunt script in the scripts working directory
|
|
# so we can be sure all javascript is properly built from the most recent source
|
|
cd $SCRIPTDIR
|
|
grunt amd
|
|
|
|
# run the build php script
|
|
php ${SCRIPTDIR}/build.php $@
|
|
|
|
if [[ "$VUEMODE" == "dev" ]]; then
|
|
# switch vuejs vack to original mode
|
|
$SCRIPTDIR/vuemode.sh $VUEMODE
|
|
|
|
# re-do the grunt compiling
|
|
grunt amd
|
|
fi
|
|
|
|
# return to the working directory
|
|
cd $WD |