🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

gulp-csso

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-csso - npm Package Compare versions

Comparing version

to
0.1.5

.editorconfig

2

package.json
{
"name": "gulp-csso",
"version": "0.1.4",
"version": "0.1.5",
"description": "Minify CSS with CSSO.",

@@ -5,0 +5,0 @@ "license": "MIT",

/* jshint node: true */
/* global describe, it, before, beforeEach, after, afterEach */
/* global describe, it */

@@ -17,8 +17,8 @@ 'use strict';

var stream = csso();
stream.on('data', function(data) {
expect(String(data.contents)).to.equal(optimalmin);
cb();
expect(String(data.contents)).to.equal(optimalmin);
cb();
});
stream.write(new gutil.File({

@@ -30,8 +30,8 @@ contents: basestyle

var stream = csso(true);
stream.on('data', function(data) {
expect(String(data.contents)).to.equal(nonoptimal);
cb();
expect(String(data.contents)).to.equal(nonoptimal);
cb();
});
stream.write(new gutil.File({

@@ -38,0 +38,0 @@ contents: basestyle