tscoverage/ts/npmts.promisechain.ts

11 lines
292 B
TypeScript
Raw Normal View History

2016-01-30 03:57:24 +00:00
/// <reference path="./index.ts" />
module NpmtsPromisechain {
export var init = function(){
2016-01-30 04:29:54 +00:00
var promisechain;
NpmtsOptions.run()
.then(NpmtsDefault.run)
2016-02-04 19:41:34 +00:00
.then(NpmtsCustom.run)
2016-01-30 04:29:54 +00:00
.then(NpmtsTests.run);
return promisechain;
2016-01-30 03:57:24 +00:00
}
}