refactor
This commit is contained in:
18
dist/npmts.cli.js
vendored
18
dist/npmts.cli.js
vendored
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user