This commit is contained in:
2017-11-28 17:33:55 +01:00
parent c0b7dc2547
commit 8896d3ef76
39 changed files with 244 additions and 372 deletions

18
dist/npmts.cli.js vendored
View File

@@ -58,15 +58,15 @@ exports.run = () => __awaiter(this, void 0, void 0, function* () {
.then((configArg) => {
let done = q.defer();
plugins.beautylog.ora.start('loading additional modules...');
NpmtsMods.mod00.load()
.then((mod00) => {
return mod00.run(configArg);
NpmtsMods.modCompile.load()
.then((modCompile) => {
return modCompile.run(configArg);
})
.then(configArg => {
let done = q.defer();
NpmtsMods.mod01.load()
.then(mod01 => {
return mod01.run(configArg);
NpmtsMods.modDocs.load()
.then(modDocs => {
return modDocs.run(configArg);
})
.then(configArg => {
done.resolve(configArg);
@@ -75,9 +75,9 @@ exports.run = () => __awaiter(this, void 0, void 0, function* () {
})
.then(configArg => {
let done = q.defer();
NpmtsMods.mod02.load()
.then(mod02 => {
return mod02.run(configArg);
NpmtsMods.modTest.load()
.then(modTest => {
return modTest.run(configArg);
})
.then(configArg => {
done.resolve(configArg);