0.1.1 • Published 10 years ago

gulp-jst v0.1.1

Weekly downloads
62
License
-
Repository
-
Last release
10 years ago

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.