smartfile/ts/index.ts

20 lines
508 B
TypeScript
Raw Normal View History

2016-02-03 11:52:09 +00:00
/// <reference path="./typings/main.d.ts" />
/// <reference path="./smartfile.plugins.ts" />
2016-02-04 13:21:48 +00:00
/// <reference path="./smartfile.check.ts" />
/// <reference path="./smartfile.simple.ts" />
/// <reference path="./smartfile.vinyl.ts" />
2015-12-08 19:33:13 +00:00
/// <reference path="./smartfile.require.ts" />
var plugins = SmartfilePlugins.init();
var smartfile:any = {};
2016-02-04 13:21:48 +00:00
SmartfileCheck.init(smartfile);
SmartfileSimple.init(smartfile);
SmartfileVinyl.init(smartfile);
2015-12-08 19:33:13 +00:00
SmartfileRequire.init(smartfile);
2015-11-24 17:52:24 +00:00
2015-11-03 18:57:29 +00:00
2015-11-03 19:14:41 +00:00
module.exports = smartfile;