Makes compiler minify JS files#

Jonathan Hodgson 5 years ago
parent d3493d69c7
commit 84a8526a9b
  1. 1
      bin/compiler

@ -57,6 +57,7 @@ case "$file" in
*config.h) make && sudo make install ;;
*\.c) cc "$file" -o "$base" && "$base" ;;
*\.py) python "$file" ;;
*\.js) cat "$file" | minify --js > "${base}.min.js" ;;
#*\.go) go run "$file" ;;
#*) shebangtest ;;
esac

Loading…
Cancel
Save