17 lines
372 B
Bash
Executable file
17 lines
372 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ $BUILD_PRODUCTION == "true" ]
|
|
then
|
|
echo ">>> WARNING: Building in Production Mode!"
|
|
fi
|
|
|
|
echo ">> Building LESS..."
|
|
lessc --silent static/src/less/style.less static/build/css/style.css
|
|
|
|
if [ $BUILD_PRODUCTION == "true" ]
|
|
then
|
|
echo ">> Compressing LESS..."
|
|
cleancss -d --s0 -o static/build/css/style.css static/build/css/style.css
|
|
fi
|