added initial structure

This commit is contained in:
Phil Kunz
2015-10-04 23:21:10 +02:00
parent 6076eb7a1b
commit 5195751211
13 changed files with 2213 additions and 0 deletions

14
ts/index.ts Normal file
View File

@@ -0,0 +1,14 @@
/// <reference path="typings/tsd.d.ts" />
var path, through;
through = require("through2");
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);
});
};