assemble-render-file ![NPM version](https://badge.fury.io/js/assemble-render-file.svg)
Assemble plugin for rendering views in a vinyl pipeline.
Heads up!
This requires the assemble-vinyl plugin to work.
Install
Install with npm
$ npm i assemble-render-file --save
Usage
var renderFile = require('assemble-render-file');
var assemble = require('assemble');
var app = assemble()
.use(renderFile());
app.src('*.hbs')
.pipe(app.renderfile())
.pipe(app.dest('foo'));
Related projects
- assemble: Static site generator for Grunt.js, Yeoman and Node.js. Used by Zurb Foundation, Zurb Ink, H5BP/Effeckt,… more | homepage
- assemble-loader: Assemble plugin (0.6+) for loading globs of views onto custom view collections. Also works with… more | homepage
- assemble-streams: Assemble plugin that adds convenience methods for working with streams, like
toStream
, which pushes a… more | homepage
Running tests
Install dev dependencies:
$ npm i -d && npm test
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Author
Jon Schlinkert
License
Copyright © 2015 Jon Schlinkert
Released under the MIT license.
This file was generated by verb-cli on October 10, 2015.