1.0.1 • Published 7 years ago

gulp-css-info v1.0.1

Weekly downloads
21
License
ISC
Repository
github
Last release
7 years ago

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'))
)
1.0.1

7 years ago

1.0.0

7 years ago

0.3.0

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago