gulp-bunto

1.1.0 • Public • Published

gulp-bunto

Compile Bunto sites with Gulp.

This is heavily based on gulp-ruby-sass.

Forked from gulp-jekyll and namespaced as gulp-bunto!

Status

Alpha: Currently still in development – runs with basic configuration (see example below).

TODO:

  • Mocha Tests
  • Complete CI Setup
  • Fully implement all CLI options.
  • Document Options

Install

Install with npm:

npm install --save-dev gulp-bunto

Example

var gulp = require('gulp');
var bunto = require('gulp-bunto');
 
gulp.task('default', function () {
    return gulp.src(['./index.html', './_layouts/*.html', './_posts/*.{markdown,md}'])
            .pipe(bunto({
                source: './',
                destination: './deploy/',
                bundleExec: true
            }))
            .pipe(gulp.dest('./deploy/'));
});

Changelog

  • v1.0.0: Initial Release
  • v1.1.0: Correct repository value in package.json

MIT License

gulp-bunto is freely distributable under the terms of the MIT license.

Package Sidebar

Install

npm i gulp-bunto

Weekly Downloads

1

Version

1.1.0

License

MIT

Last publish

Collaborators

  • suriyaakudo