add travis

This commit is contained in:
Phil Kunz
2015-09-17 20:58:19 +00:00
parent b37c4cda0f
commit 6884b9abee
9 changed files with 2146 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
/// <reference path="typings/tsd.d.ts" />
var path, through;
through = require("through2");
path = require("path");
module.exports = (jsonObject,type = undefined) => {
return through.obj((file, enc, cb) => {
//tell gulp that we are complete
return cb(null, file);
});
};