Files
mirror-processhacker/misc/website/websitev2/minify.bat
T
xhmikosr 3b1fb84d92 Switch to vanilla normalize.css.
Also include it before our style.

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5497 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2013-10-26 10:10:06 +00:00

13 lines
339 B
Batchfile

@echo off
rem install node.js and then run:
rem npm install -g clean-css
rem npm install -g uglify-js
pushd %~dp0
echo minifying and combining css files...
type css\normalize.css css\stylesheet.css | cleancss --s0 --remove-empty -o css\pack.css
cmd /c uglifyjs js\moment.js js\feed.js --compress --mangle -o js\pack.js
popd