gulp-browser/ts/index.ts

13 lines
210 B
TypeScript
Raw Normal View History

/// <reference path="./typings/main.d.ts" />
2015-10-24 16:26:41 +00:00
2016-02-26 16:57:53 +00:00
import browserify = require("./gulpbrowser.browserify");
2015-10-24 16:26:41 +00:00
//create the return object
2016-02-26 16:57:53 +00:00
var gulpBrowser:any = {
browserify: browserify
};
2015-10-24 14:51:30 +00:00
2016-02-26 16:57:53 +00:00
export = gulpBrowser;