13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
/// <reference path="typings/tsd.d.ts" />
|
|
var through = require("through2");
|
|
var path = require("path");
|
|
|
|
module.exports = (jadeTemplate,mojo = undefined) => {
|
|
|
|
return through.obj((file, enc, cb) => {
|
|
|
|
//run callback function to signal end of plugin process.
|
|
return cb(null, file);
|
|
});
|
|
};
|