tscoverage/ts/npmts.promisechain.ts

11 lines
296 B
TypeScript
Raw Permalink 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;
2016-02-09 04:39:31 +00:00
NpmtsConfigFile.run()
.then(NpmtsOptions.run)
.then(NpmtsCompile.run)
2016-01-30 04:29:54 +00:00
.then(NpmtsTests.run);
return promisechain;
2016-01-30 03:57:24 +00:00
}
}