Comparing version 0.2.0 to 0.2.1
12
index.js
@@ -24,3 +24,2 @@ /* jshint node:true */ | ||
function gulpcsso(optimise) { | ||
var optimise = arguments[0]; | ||
var stream = new transform({ objectMode: true }); | ||
@@ -52,14 +51,3 @@ | ||
gulpcsso.cssoTransform = cssoTransform; | ||
module.exports = gulpcsso; | ||
/* | ||
module.exports = function() { | ||
// Use csso(true) to turn structure minimization off. | ||
var optimise = (arguments.length > 0) ? arguments[0] : false; | ||
return map(function(file, cb) { | ||
file.contents = new Buffer(csso.justDoIt(String(file.contents), optimise)); | ||
cb(null, file); | ||
}); | ||
}; | ||
*/ |
{ | ||
"name": "gulp-csso", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Minify CSS with CSSO.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8044
144