2016-01-14 19:12:23 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2016-01-30 00:11:31 +00:00
|
|
|
if [[ $BUILD_PRODUCTION ]]
|
2016-01-14 19:12:23 +00:00
|
|
|
then
|
|
|
|
echo ">>> WARNING: Building in Production Mode!"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ">> Building LESS..."
|
|
|
|
lessc --silent static/src/less/style.less static/build/css/style.css
|
|
|
|
|
2016-02-28 22:23:44 +00:00
|
|
|
echo ">> Post-Processing..."
|
|
|
|
postcss -u autoprefixer -o static/build/css/style.css static/build/css/style.css
|
|
|
|
|
2016-01-30 00:11:31 +00:00
|
|
|
if [[ $BUILD_PRODUCTION ]]
|
2016-01-14 19:12:23 +00:00
|
|
|
then
|
|
|
|
echo ">> Compressing LESS..."
|
|
|
|
cleancss -d --s0 -o static/build/css/style.css static/build/css/style.css
|
|
|
|
fi
|
2016-02-28 22:22:19 +00:00
|
|
|
|
|
|
|
echo "> LESS Built!"
|