gulp-any-template
0.3.1 • Public • Published gulp-any-template
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'))
})
Package Sidebar
Install
Weekly Downloads