Gildas 7 年 前
コミット
3cb877e6a4
1 ファイル変更2 行追加0 行削除
  1. 2 0
      lib/single-file/single-file-core.js

+ 2 - 0
lib/single-file/single-file-core.js

@@ -181,12 +181,14 @@ this.SingleFileCore = this.SingleFileCore || (() => {
 		async executeStage(step) {
 			STAGES[step].sync.forEach(task => {
 				// const startTime = Date.now();
+				// console.log(task.action, "...");
 				this.executeTask(task, !step);
 				// console.log(task.action, Date.now() - startTime);
 			});
 			if (STAGES[step].async) {
 				return Promise.all(STAGES[step].async.map(task => {
 					// const startTime = Date.now();
+					// console.log(task.action, "...");
 					const promise = this.executeTask(task, !step);
 					// promise.then(() => console.log(task.action, Date.now() - startTime));
 					return promise;