0.0.3 • Published 7 years ago

gulp-dust-plus v0.0.3

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

gulp-dust-plus

Compile Dust templates to html

const gulp = require('gulp')
const dustPlus = require('gulp-dust-plus')

gulp.task('dustPlus', function() {
  var opts = {
    data: {
      name: 'test',
    },
  }

  return gulp.src('hello.dust')
    .pipe(dustPlus(opts))
    .pipe(gulp.dest('./dist'));
});