mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
904aebadf6
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5634 21ef857c-d57f-4fe0-8362-d861dc6d29cd
13 lines
345 B
Batchfile
13 lines
345 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...
|
|
cmd /c cleancss --s0 --compatibility ie8 css\normalize.css css\stylesheet.css -o css\pack.css
|
|
cmd /c uglifyjs js\moment.js js\feed.js --compress --mangle -o js\pack.js
|
|
|
|
popd
|