rdmurphy / gulp-jst

Compile lodash templates to a JST file using gulp.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Compile lodash templates to a JST file using gulp.


Languages

Language:JavaScript 100.0%