mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-14 14:39:21 +08:00
11 lines
526 B
Bash
11 lines
526 B
Bash
#!/bin/sh
|
|
|
|
# You can download yuicompressor here https://github.com/yui/yuicompressor/releases/tag/v2.4.8
|
|
# Using WGET: $ wget https://github.com/yui/yuicompressor/releases/download/v2.4.8/yuicompressor-2.4.8.jar
|
|
#
|
|
# Put the JAR file into root of this project!
|
|
# Make this script executable and then run: ./minify.sh
|
|
|
|
java -jar yuicompressor-2.4.8.jar css/bootstrap-datetimepicker.css > css/bootstrap-datetimepicker.min.css
|
|
java -jar yuicompressor-2.4.8.jar js/bootstrap-datetimepicker.js > js/bootstrap-datetimepicker.min.js
|