minify.sh 526 B

12345678910
  1. #!/bin/sh
  2. # You can download yuicompressor here https://github.com/yui/yuicompressor/releases/tag/v2.4.8
  3. # Using WGET: $ wget https://github.com/yui/yuicompressor/releases/download/v2.4.8/yuicompressor-2.4.8.jar
  4. #
  5. # Put the JAR file into root of this project!
  6. # Make this script executable and then run: ./minify.sh
  7. java -jar yuicompressor-2.4.8.jar css/bootstrap-datetimepicker.css > css/bootstrap-datetimepicker.min.css
  8. java -jar yuicompressor-2.4.8.jar js/bootstrap-datetimepicker.js > js/bootstrap-datetimepicker.min.js