2012-09-25 23:01:58 +02:00
|
|
|
@echo off
|
2012-11-29 16:02:25 +01:00
|
|
|
rem install node.js and then run:
|
|
|
|
rem npm install -g clean-css
|
|
|
|
rem npm install -g uglify-js
|
|
|
|
|
2012-09-29 17:26:57 +02:00
|
|
|
pushd %~dp0
|
|
|
|
|
2012-11-29 16:02:25 +01:00
|
|
|
type css\all.css css\demo.css | cleancss -o css\pack.css
|
|
|
|
cmd /c uglifyjs js/github.js js/picnet.table.filter.min.js -o js/pack.js -c -m
|
|
|
|
|
|
|
|
popd
|