0.1.0 • Published 11 years ago
gulp-liquid v0.1.0
gulp-liquid
Gulp task to render using liquid templating engine
Usage
First, install gulp-liquid
npm install --save-dev gulp-liquid
Then, add it to your gulpfile.js
:
var liquid = require("gulp-liquid");
gulp.src("./src/*.ext")
.pipe(liquid({
locals: {}
}))
.pipe(gulp.dest("./dist"));
API
liquid(options)
options.templatePath
Type: String
Default: undefined
Required: true
options.locals
Type: Object
Default: {}
Required: true
The locals object is passed as template variables to the liquid templating engine.
License
0.1.0
11 years ago