Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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 0.1.4 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc