|
|
@@ -183,7 +183,7 @@ this.SingleFileCore = this.SingleFileCore || (() => {
|
|
|
|
|
|
async executeStage(step) {
|
|
|
if (DEBUG) {
|
|
|
- console.log("-- STARTED STAGE --", step); // eslint-disable-line no-console
|
|
|
+ console.log("-- STARTED STAGE", step, "--"); // eslint-disable-line no-console
|
|
|
}
|
|
|
STAGES[step].sync.forEach(task => {
|
|
|
let startTime;
|
|
|
@@ -201,7 +201,7 @@ this.SingleFileCore = this.SingleFileCore || (() => {
|
|
|
let startTime;
|
|
|
if (DEBUG) {
|
|
|
startTime = Date.now();
|
|
|
- console.log("STARTED", task.action, "..."); // eslint-disable-line no-console
|
|
|
+ console.log("STARTED", task.action); // eslint-disable-line no-console
|
|
|
}
|
|
|
const promise = this.executeTask(task, !step);
|
|
|
if (DEBUG) {
|
|
|
@@ -211,7 +211,7 @@ this.SingleFileCore = this.SingleFileCore || (() => {
|
|
|
}));
|
|
|
}
|
|
|
if (DEBUG) {
|
|
|
- console.log("-- ENDED STAGE --", step); // eslint-disable-line no-console
|
|
|
+ console.log("-- ENDED STAGE", step, "--"); // eslint-disable-line no-console
|
|
|
}
|
|
|
}
|
|
|
|