From 76221d04bb530070354ef873b9fa7a61b5b718c9 Mon Sep 17 00:00:00 2001 From: "Sakamoto, Kazunori" Date: Tue, 26 Sep 2023 13:51:24 +0900 Subject: [PATCH] fix(shared-lib): export sleep() --- packages/shared-lib/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/shared-lib/src/index.ts b/packages/shared-lib/src/index.ts index 14a84f36..62046900 100644 --- a/packages/shared-lib/src/index.ts +++ b/packages/shared-lib/src/index.ts @@ -1,6 +1,7 @@ export { errorify, ignoreError, ignoreEnoent, ignoreErrorAsync, ignoreEnoentAsync, withRetry } from './error.js'; +export { mailTemplates } from './mail.js'; export { shuffle } from './shuffle.js'; +export { sleep } from './sleep.js'; export { zenkakuAlphanumericalsToHankaku } from './zenkaku.js'; -export { mailTemplates } from './mail.js'; export type { RetryOptions } from './error.js';