diff --git a/build.sh b/build.sh new file mode 100755 index 00000000..c7dc6d4f --- /dev/null +++ b/build.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Exit the script if any command returns a non-true return value (http://www.davidpashley.com/articles/writing-robust-shell-scripts/) +set -e + +npm install -g grunt-cli +npm install -g bower +bower install +npm install +grunt prod