gulp-bunto
v1.1.0
Published
Compile Bunto sites with Gulp.
Downloads
3
Maintainers
Readme
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.