mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
3b1fb84d92
Also include it before our style. git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5497 21ef857c-d57f-4fe0-8362-d861dc6d29cd
13 lines
339 B
Batchfile
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
|