2018-08-23 16:55:06 -07:00
|
|
|
@ECHO OFF
|
2018-12-29 15:24:33 -08:00
|
|
|
CALL:CompressHandlebars default
|
|
|
|
CALL:CompressHandlebars default-mobile
|
|
|
|
CALL:CompressHandlebars login
|
|
|
|
CALL:CompressHandlebars login-mobile
|
|
|
|
CALL:CompressHandlebars messenger
|
|
|
|
PAUSE
|
|
|
|
GOTO:eof
|
2018-08-24 13:14:20 -07:00
|
|
|
|
2018-12-29 15:24:33 -08: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 16:55:06 -07:00
|
|
|
..\..\WebSiteCompiler\bin\Debug\WebSiteCompiler.exe compress.wcc -c
|
2018-12-29 15:24:33 -08:00
|
|
|
COPY compress.htm ..\views\%~1-min.handlebars
|
2018-08-23 16:55:06 -07:00
|
|
|
DEL compress.htm
|
|
|
|
DEL index.html
|
2018-12-29 15:24:33 -08:00
|
|
|
GOTO:eof
|