gulp-jst

0.1.1 • Public • Published

gulp-jst Build Status

Compile lodash templates to a JST file using gulp.

Install

Install using npm.

npm install gulp-jst --save-dev

Usage

var gulp = require('gulp');
var jst = require('gulp-jst');
 
gulp.task('jst', function() {
    gulp.src('input/*.html')
        .pipe(jst())
        .pipe(gulp.dest('./output'));
});
 
gulp.task('default', ['jst']);

Options

jst(options)

gulp-jst accepts the same _.template options as the lodash library.

Dependents (2)

Package Sidebar

Install

npm i gulp-jst

Weekly Downloads

23

Version

0.1.1

License

MIT

Last publish

Collaborators

  • rdm