thelounge/build.sh

19 lines
357 B
Bash
Raw Normal View History

2014-08-26 01:13:47 +02:00
#!/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