We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22e26b7 commit 023e608Copy full SHA for 023e608
src/utils.ts
@@ -1,4 +1,6 @@
1
-import { find as findTimezone } from 'geo-tz';
+// Bun build fails if this is an import, temporary workaround is to use dynamic import
2
+// import { find as findTimezone } from 'geo-tz';
3
+const { find: findTimezone } = await import('geo-tz');
4
5
import type { SheetsSleepEntry } from "./types";
6
0 commit comments