1.0.2 • Published 7 years ago

gulp-holograph v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

gulp-hologram

Build Status

Generate Holograph styleguides with Gulp.

Getting started

Installation

npm install gulp-holograph --save-dev

or

yarn add gulp-holograph

Usage

Ensure you have a holograph_config.yml as per the Holograph configuration, and then pipe it into the gulp-holograph task.

const holograph = require('gulp-holograph');

gulp.task('holograph', function () {
  gulp.src('holograph_config.yml')
    .pipe(holograph());
});