now fully es6

This commit is contained in:
2016-07-26 18:15:03 +02:00
parent f436fffecd
commit a7d0bfc63f
11 changed files with 44 additions and 52 deletions

@@ -1,4 +1,3 @@
import "typings-global";
import plugins = require("./gulpbrowser.plugins");
@@ -43,7 +42,7 @@ let browserify = function(transforms = []) {
cb();
} // no need to clean up after ourselves
return plugins.through.obj(forEach,atEnd); // this is the through object that gets returned by gulpBrowser.browserify();
return plugins.through2.obj(forEach,atEnd); // this is the through object that gets returned by gulpBrowser.browserify();
};
export = browserify;

@@ -1,5 +1,5 @@
import "typings-global";
export let beautylog = require("beautylog");
export let through = require("through2");
export let path = require("path");
export let browserify = require("browserify");
export import beautylog = require("beautylog");
export import through2 = require("through2");
export import path = require("path");
export import browserify = require("browserify");

@@ -1,4 +1 @@
import "typings-global";
export import browserify = require("./gulpbrowser.browserify");