npm.io
0.3.1 • Published 9 years ago

gulp-any-template

Licence
MIT
Version
0.3.1
Deps
12
Vulns
6
Weekly
0

gulp-any-template Circle CI

Zero-config Gulp plugin to pipe any template format and emit an interpolated file. Currently supported templating engines are:

  • Dustjs-linkedin
  • EJS
  • Handlebars
  • Hogan
  • lodash.template
  • Mustache
  • Pug
  • Swig
  • underscore.template

Example

const anyTemplate = require('gulp-any-template')

gulp.task('compile-template', () => {
  return gulp.src('index.ejs')
    .pipe(anyTemplate({ title: 'Title' }))
    .pipe(rename('index.html'))
    .pipe(gulp.dest('build'))
})

Keywords