thelounge/build.sh
2014-08-25 16:13:47 -07:00

19 lines
357 B
Bash
Executable file

#!/bin/bash
#
# This file will compile the javascript libraries and
# the Handlebars templates.
#
# Install Handlebars
if ! type handlebars &> /dev/null; then
sudo npm -g install handlebars
fi
# Compile the templates
handlebars -e tpl -f client/js/shout.templates.js client/templates/
# Uglify the javascript libraries
# See: Gruntfile.js
grunt uglify