You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

gulp-css-info

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-css-info

Gulp plugin for generating docs for functional CSS files

1.0.1
latest
Source
npmnpm
Version published
Weekly downloads
193
-37.34%
Maintainers
1
Weekly downloads
 
Created
Source

CSS info for Gulp

This gulp plugin allows you to generate a static version of the CSS info app contained within a single file. The generated HTML file is a replacement for css-info.com so that you can include your functional CSS reference in your project repo.

Example usage

Import as cssInfo and pipe CSS files through cssInfo(). They will be converted to HTML files.

import gulp from 'gulp';
import cssInfo from 'gulp-css-info';

// Turns `css/style.css` into `docs/css/style.html`
gulp.task('default', () =>
  gulp.src('**/*.css')
    .pipe(cssInfo())
    .pipe(gulp.dest('docs'))
)

FAQs

Package last updated on 29 Mar 2017

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