New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-minify-css

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-minify-css - npm Package Compare versions

Comparing version 0.4.2 to 0.4.3

test/fixture/import-error.css

8

package.json
{
"name": "gulp-minify-css",
"description": "Minify css with clean-css.",
"version": "0.4.2",
"version": "0.4.3",
"repository": "https://github.com/jonathanepollack/gulp-minify-css.git",

@@ -28,8 +28,8 @@ "homepage": "https://github.com/jonathanepollack/gulp-minify-css",

"devDependencies": {
"mocha": "^1.21.4",
"chai": "^1.9.0",
"event-stream": "^3.1.0",
"gulp": "^3.8.8",
"gulp-sourcemaps": "^1.3.0",
"proxyquire": "^1.0.1",
"event-stream": "^3.1.0"
"mocha": "^1.21.4",
"proxyquire": "^1.0.1"
},

@@ -36,0 +36,0 @@ "licenses": [

@@ -80,2 +80,13 @@ var gulp = require('gulp'),

});
describe('with errors', function () {
var filename = path.join(__dirname, './fixture/import-error.css');
it('should emit gutil.PluginError', function (done) {
gulp.src(filename)
.pipe(minifyCSS(opts))
.on('error', function (err) {
expect(err).to.exist;
done();
});
});
});
});

@@ -82,0 +93,0 @@

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