mirror of
https://github.com/github/choosealicense.com
synced 2024-11-04 18:58:50 +01:00
3989f02359
Now the main page doesn't include any JS since it doesn't use them. This results in -4 http requests and a lot of bytes saved.
10 lines
155 B
Bash
Executable File
10 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "compiling javascript..."
|
|
./node_modules/.bin/coffee -c _includes/js/app.coffee
|
|
|
|
echo "building the site..."
|
|
bundle exec rake test
|