This commit is contained in:
Philipp Kunz
2015-11-03 19:57:29 +01:00
parent e61ab65dab
commit 39cd77ef7c
11 changed files with 2231 additions and 0 deletions

12
ts/index.ts Normal file
View File

@@ -0,0 +1,12 @@
/// <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);
});
};