web项目压缩工具(css和js脚本)

yuicompressor-2.4.8

下载网址:

http://yui.github.io/yuicompressor/

https://github.com/yui/yuicompressor/releases

 

bat命令:

rem setting start #####################################
@rem 压缩工具路径
set TOOL_PATH=C:\yuicompressor-2.4.8.jar
@rem 压缩项目路径
set PROJECT_PRJPATH=D:\StudyWebGL\study_webgl\xj\study_webgl\html\jidong_demo2
rem setting end  #####################################

echo off
@rem 进入文件目录盘
set DISH_PATH=%PROJECT_PRJPATH:~0,2%
%DISH_PATH%
cd %PROJECT_PRJPATH%

@rem 获取js css等需压缩文件
for /R %%f in (*.css *.js) do ( 
	echo %%f	
	java -jar %TOOL_PATH% %%f > %%f
)

@rem java -jar C:\yuicompressor-2.4.8.jar D:\StudyWebGL\study_webgl\xj\study_webgl\html\index.css > D:\StudyWebGL\study_webgl\xj\study_webgl\html\index_min.css
pause 

 

你可能感兴趣的:(WebGl)