11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
/// <reference path="./index.ts" />
|
|
module NpmtsPromisechain {
|
|
export var init = function(){
|
|
var promisechain;
|
|
NpmtsOptions.run()
|
|
.then(NpmtsDefault.run)
|
|
.then(NpmtsCustom.run)
|
|
.then(NpmtsTests.run);
|
|
return promisechain;
|
|
}
|
|
} |