First version of clean-css.
authorJakub Pawlowicz <contact@jakubpawlowicz.com>
Mon, 7 Feb 2011 16:08:11 +0000 (17:08 +0100)
committerJakub Pawlowicz <jakub@goalsmashers.com>
Mon, 28 Feb 2011 18:53:41 +0000 (19:53 +0100)
commit5a1b3a6a414f4df182d1f3557d84b985d364c341
tree2b1f037cf545611a6403232aed31599e4a58f4a8
parent88fff58b7d383d424558f72da67da98a298530fd
First version of clean-css.

* Implemented all standard transformations (cleaning up whitespace, semicolons, long color declarations, empty elements, etc...).
* Added tests for all transformations.
* Added tests cleaning up some standard libraries (reset.css, 960.gs, blueprint.css).
17 files changed:
.gitignore [new file with mode: 0644]
Makefile [new file with mode: 0644]
README.md [new file with mode: 0644]
bin/cleancss [new file with mode: 0755]
index.js [new file with mode: 0644]
lib/clean.js [new file with mode: 0644]
lib/purify.js [deleted file]
package.json [new file with mode: 0644]
test/batch-test.js [new file with mode: 0644]
test/data/960-min.css [new file with mode: 0755]
test/data/960.css [new file with mode: 0755]
test/data/blueprint-min.css [new file with mode: 0644]
test/data/blueprint.css [new file with mode: 0644]
test/data/reset-min.css [new file with mode: 0644]
test/data/reset.css [new file with mode: 0644]
test/purifier-test.js [deleted file]
test/unit-test.js [new file with mode: 0644]