fix check for production build
This commit is contained in:
parent
b3c4d70475
commit
7ca316df94
3 changed files with 7 additions and 7 deletions
2
build
2
build
|
@ -12,7 +12,7 @@ npm run build $@
|
|||
|
||||
env/bin/python manage.py collectstatic --noinput
|
||||
|
||||
if [ $BUILD_PRODUCTION == "true" ]
|
||||
if [[ $BUILD_PRODUCTION ]]
|
||||
then
|
||||
echo ">> Running Migrations..."
|
||||
env/bin/python manage.py migrate
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
set -e
|
||||
|
||||
if [ $BUILD_PRODUCTION == "true" ]
|
||||
if [[ $BUILD_PRODUCTION ]]
|
||||
then
|
||||
echo ">>> WARNING: Building in Production Mode!"
|
||||
fi
|
||||
|
||||
mkdir -p static/build/js/lib
|
||||
|
||||
if [ $BUILD_PRODUCTION == "true" ]
|
||||
if [[ $BUILD_PRODUCTION ]]
|
||||
then
|
||||
echo ">> Compressing Libraries..."
|
||||
uglifyjs node_modules/bootstrap/dist/js/bootstrap.js --compress --screw-ie8 --define --stats --keep-fnames -o static/build/js/lib/bootstrap.js
|
||||
|
@ -22,7 +22,7 @@ fi
|
|||
|
||||
rm -rf static/build/js/lib
|
||||
|
||||
if [ $BUILD_PRODUCTION == "true" ]
|
||||
if [[ $BUILD_PRODUCTION ]]
|
||||
then
|
||||
echo ">> Compressing jQuery..."
|
||||
uglifyjs node_modules/jquery/dist/jquery.js --compress --screw-ie8 --define --stats --keep-fnames -o static/build/js/jquery.js
|
||||
|
@ -35,7 +35,7 @@ fi
|
|||
echo ">> Building Application JS..."
|
||||
browserify -t [ babelify --presets [ es2015 react ] ] static/src/js/app.js -o static/build/js/app.js
|
||||
|
||||
if [ $BUILD_PRODUCTION == "true" ]
|
||||
if [[ $BUILD_PRODUCTION ]]
|
||||
then
|
||||
echo ">> Compressing Application..."
|
||||
uglifyjs static/build/js/app.js --compress --screw-ie8 --define --stats --keep-fnames -o static/build/js/app.js
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
if [ $BUILD_PRODUCTION == "true" ]
|
||||
if [[ $BUILD_PRODUCTION ]]
|
||||
then
|
||||
echo ">>> WARNING: Building in Production Mode!"
|
||||
fi
|
||||
|
@ -10,7 +10,7 @@ fi
|
|||
echo ">> Building LESS..."
|
||||
lessc --silent static/src/less/style.less static/build/css/style.css
|
||||
|
||||
if [ $BUILD_PRODUCTION == "true" ]
|
||||
if [[ $BUILD_PRODUCTION ]]
|
||||
then
|
||||
echo ">> Compressing LESS..."
|
||||
cleancss -d --s0 -o static/build/css/style.css static/build/css/style.css
|
||||
|
|
Reference in a new issue