MeshCentral/public/compress.bat

19 lines
514 B
Batchfile
Raw Normal View History

2018-08-23 19:55:06 -04:00
@ECHO OFF
2018-12-29 18:24:33 -05:00
CALL:CompressHandlebars default
CALL:CompressHandlebars default-mobile
CALL:CompressHandlebars login
CALL:CompressHandlebars login-mobile
CALL:CompressHandlebars messenger
PAUSE
GOTO:eof
2018-12-29 18:24:33 -05:00
:CompressHandlebars
ECHO COMPRESS ..\views\%~1.handlebars TO ..\views\%~1-min.handlebars
DEL ..\views\%~1-min.handlebars
COPY ..\views\%~1.handlebars index.html
2018-08-23 19:55:06 -04:00
..\..\WebSiteCompiler\bin\Debug\WebSiteCompiler.exe compress.wcc -c
2018-12-29 18:24:33 -05:00
COPY compress.htm ..\views\%~1-min.handlebars
2018-08-23 19:55:06 -04:00
DEL compress.htm
DEL index.html
2018-12-29 18:24:33 -05:00
GOTO:eof