0.0.1 • Published 7 years ago

broccoli-hbs v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Deprecation Warning

This package is not actively maintained. For a more full-featured implementation, see broccoli-render-handlebars.

Usage

Example Brocfile:

var hbs = require('broccoli-hbs');
module.exports = function (broccoli) {
  var tree = 'fixture';
  var context = {
    title : "Hello World",
    body: "<p>Hello!</p>"
  };
  var options = { context : context};
  return hbs(tree, options);
};