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