Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

jeanfredrik/gulp-css-info

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.jeanfredrik.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'))
)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published