Added acknowledgements section.
authorJakub Pawlowicz <contact@jakubpawlowicz.com>
Mon, 4 Jun 2012 13:18:10 +0000 (15:18 +0200)
committerJakub Pawlowicz <contact@jakubpawlowicz.com>
Mon, 4 Jun 2012 13:18:10 +0000 (15:18 +0200)
README.md

index 4175aa9..6197d3d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Clean-css is a node.js library for minifying CSS files. It does the same job as
 You can minify one file **public.css** into **public-min.css** via:
 
     cleancss -o public-min.css public.css
-    
+
 To minify the same **public.css** into standard output skip the -o parameter:
 
     cleancss public.css
@@ -25,7 +25,7 @@ To minify the same **public.css** into standard output skip the -o parameter:
 Or more likely you would like to do something like this:
 
     cat one.css two.css three.css | cleancss -o merged-and-minified.css
-    
+
 Or even gzip it at once:
 
     cat one.css two.css three.css | cleancss | gzip -9 -c > merged-minified-and-gzipped.css.gz
@@ -33,7 +33,7 @@ Or even gzip it at once:
 ### How to use clean-css programatically? ###
 
     var cleanCSS = require('clean-css');
-    
+
     var source = "a{font-weight:bold;}";
     var minimized = cleanCSS.process(source);
 
@@ -43,6 +43,11 @@ You need vows testing framework (npm install vows) then simply run:
 
     make test
 
+### Acknowledgments ###
+
+* Vincent Voyer (@vvo) for a patch with better empty element regex and for inspiring us to do many performance improvements in 0.4 release.
+* Jan Michael Alonzo (@jmalonzo) for a patch removing node's old 'sys' package.
+
 ## License ##
 
 Clean-css is released under the MIT license.
\ No newline at end of file