We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2033fb4 commit b076c1fCopy full SHA for b076c1f
lib/tasks/save-project-api.task.ts
@@ -3,7 +3,7 @@ import { ListrTask } from 'listr2';
3
import * as api from '../services/api.service';
4
import { Context } from '../interface';
5
import { getHumanReadableFileSize } from '../services/fs.service';
6
-import { wait } from "../utils/wait";
+import { wait } from '../utils/wait';
7
8
export const saveProjectApiTask: ListrTask = {
9
title: 'Save project results (Omniboard.dev)',
lib/utils/wait.ts
@@ -1,4 +1,4 @@
1
// try to prevent OOM
2
export async function wait(delay = 500) {
await new Promise<void>((resolve) => setTimeout(() => resolve(), delay));
-}
+}
0 commit comments