Socket
Socket
Sign inDemoInstall

gulp-analyze-css

Package Overview
Dependencies
230
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

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


Version published
Maintainers
1
Weekly downloads
2,572
increased by38.58%

Weekly downloads

Readme

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

Last updated on 20 Jul 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc