gulp-holograph

Build Holograph styleguides with Gulp.

Usage no npm install needed!

<script type="module">
  import gulpHolograph from 'https://cdn.skypack.dev/gulp-holograph';
</script>

README

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());
});