gulp-liquid-ec
v0.1.1
Published
A gulp plugin to parse liquid template
Downloads
4
Maintainers
Readme
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.