7 lines
282 B
Batchfile
7 lines
282 B
Batchfile
rem This bat file minifies all js and css and creates a dist folder with everything in it
|
|
|
|
node node_modules\minifyfromhtml\minifyfromhtml.js --js=dist\myapp.js --css=dist\myapp.css < index.html
|
|
|
|
copy /Y index.production.html dist\index.html
|
|
xcopy /F /Y /I templates dist\templates
|