mirror of
https://github.com/chenasraf/ng-qtip2.git
synced 2026-05-17 17:58:05 +00:00
12 lines
211 B
Bash
12 lines
211 B
Bash
#!/usr/bin/env bash
|
|
|
|
# put this in ./.git/hooks for auto-generation of JS from CS
|
|
|
|
PATH="$PATH:/usr/local/bin"
|
|
|
|
# echo 'Compressing .coffee...'
|
|
find . -name '*.coffee' -exec coffee -c {} \;
|
|
git add *.js
|
|
|
|
exit 0
|