Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-analyze-css

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-analyze-css

Gulp plugin that analyze your css with analyze-css and compare the results to a user-defined benchmark

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.7K
decreased by-8.97%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-analyze-css

analyze-css plugin for gulp

Gulp plugin that analyze your css with analyze-css and compare the results to a user-defined benchmark.

Usage

First, install gulp-analyze-css as a development dependency:

npm install --save-dev gulp-analyze-css

When you need proccess Object result of analyze:

var analyzeCss = require("gulp-analyze-css");

gulp.src("./src/*.css")
    .pipe(analyzeCss())
    .pipe(myTaskProccessResult());

If you need export result of analyze (JSON format) and need same source file in next pipe:

var analyzeCss = require("gulp-analyze-css");

gulp.src("./src/*.css")
    .pipe(analyzeCss({ outDiretory: "./dist" }))
    .pipe(myCssTask());

License

MIT License

Keywords

FAQs

Package last updated on 20 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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