You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 886B

123456789101112131415161718192021222324252627
  1. /**
  2. * UglifyCSS
  3. * Port of YUI CSS Compressor to NodeJS
  4. * Author: Franck Marcia - https://github.com/fmarcia
  5. * MIT licenced
  6. */
  7. /**
  8. * cssmin.js
  9. * Author: Stoyan Stefanov - http://phpied.com/
  10. * This is a JavaScript port of the CSS minification tool
  11. * distributed with YUICompressor, itself a port
  12. * of the cssmin utility by Isaac Schlueter - http://foohack.com/
  13. * Permission is hereby granted to use the JavaScript version under the same
  14. * conditions as the YUICompressor (original YUICompressor note below).
  15. */
  16. /**
  17. * YUI Compressor
  18. * http://developer.yahoo.com/yui/compressor/
  19. * Author: Julien Lecomte - http://www.julienlecomte.net/
  20. * Copyright (c) 2011 Yahoo! Inc. All rights reserved.
  21. * The copyrights embodied in the content of this file are licensed
  22. * by Yahoo! Inc. under the BSD (revised) open source license.
  23. */
  24. module.exports = require('./uglifycss-lib');