mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-18 11:32:08 -05:00
28 lines
885 B
JavaScript
28 lines
885 B
JavaScript
/**
|
|
* UglifyCSS
|
|
* Port of YUI CSS Compressor to NodeJS
|
|
* Author: Franck Marcia - https://github.com/fmarcia
|
|
* MIT licenced
|
|
*/
|
|
|
|
/**
|
|
* cssmin.js
|
|
* Author: Stoyan Stefanov - http://phpied.com/
|
|
* This is a JavaScript port of the CSS minification tool
|
|
* distributed with YUICompressor, itself a port
|
|
* of the cssmin utility by Isaac Schlueter - http://foohack.com/
|
|
* Permission is hereby granted to use the JavaScript version under the same
|
|
* conditions as the YUICompressor (original YUICompressor note below).
|
|
*/
|
|
|
|
/**
|
|
* YUI Compressor
|
|
* http://developer.yahoo.com/yui/compressor/
|
|
* Author: Julien Lecomte - http://www.julienlecomte.net/
|
|
* Copyright (c) 2011 Yahoo! Inc. All rights reserved.
|
|
* The copyrights embodied in the content of this file are licensed
|
|
* by Yahoo! Inc. under the BSD (revised) open source license.
|
|
*/
|
|
|
|
module.exports = require('./uglifycss-lib')
|