2015-11-09 21:58:43 +00:00
|
|
|
/// <reference path="typings/tsd.d.ts" />
|
2016-01-18 03:20:37 +00:00
|
|
|
/// <reference path="smartgit.plugins.ts" />
|
2015-11-13 21:58:20 +00:00
|
|
|
/// <reference path="smartgit.clone.ts" />
|
|
|
|
/// <reference path="smartgit.init.ts" />
|
|
|
|
/// <reference path="smartgit.commit.ts" />
|
2016-01-18 03:20:37 +00:00
|
|
|
/// <reference path="smartgit.check.ts" />
|
2015-11-11 04:20:06 +00:00
|
|
|
|
2016-01-18 03:20:37 +00:00
|
|
|
var plugins = SmartgitPlugins.init();
|
2015-11-11 04:20:06 +00:00
|
|
|
|
2016-01-18 03:20:37 +00:00
|
|
|
//Build the smartgit object
|
2015-11-13 21:58:20 +00:00
|
|
|
var smartgit:any = {};
|
2016-01-18 03:20:37 +00:00
|
|
|
smartgit.clone = SmartgitClone.init();
|
|
|
|
smartgit.commit = SmartgitCommit.init();
|
|
|
|
smartgit.check = SmartgitCheck.init();
|
|
|
|
smartgit.init = SmartgitInit.init();
|
2015-11-13 21:58:20 +00:00
|
|
|
|
|
|
|
|
2015-11-11 04:20:06 +00:00
|
|
|
module.exports = smartgit;
|