0.0.8 • Published 12 years ago

broccoli-swig v0.0.8

Weekly downloads
2
License
ISC
Repository
github
Last release
12 years ago

broccoli-swig

Swig filter for broccoli.

Usage

First, Install :

npm install --save-dev broccoli-swig

And then, Use :

module.exports = function (broccoli) {
    var tree = broccoli.makeTree('some_path');
    
    // This is where the magic happens
    var swigOptions = { context : { locals : { what : "World"} }, extendSwig : function(swig) {
        // Lovely place to extend swig.
    }};
	tree = require('broccoli-swig')(tree, swigOptions);
    
    return tree;
};
0.0.8

12 years ago

0.0.7

12 years ago

0.0.6

12 years ago

0.0.5

12 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago