bebraw
6/28/2013 - 6:25 PM

Generic compiler plugin for james.js.

Generic compiler plugin for james.js.

var james = require('james');


module.exports = function(options) {
    return james.createStream(function(file, callback) {
        callback(options.compiler.compile(file, options)(options.context));
    });
};