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 f51dd00 commit 95e3f7cCopy full SHA for 95e3f7c
.changeset/young-terms-sparkle.md
@@ -0,0 +1,5 @@
1
+---
2
+"react-email": patch
3
4
+
5
+Add missing timers/promises Node module for `email dev`
packages/react-email/src/utils/static-node-modules-for-vm.ts
@@ -30,6 +30,7 @@ import repl from 'node:repl';
30
import stream from 'node:stream';
31
import stringDecoder from 'node:string_decoder';
32
import timers from 'node:timers';
33
+import timersPromises from 'node:timers/promises';
34
import tls from 'node:tls';
35
import tty from 'node:tty';
36
import url from 'node:url';
@@ -78,6 +79,7 @@ export const staticNodeModulesForVM = {
78
79
stream,
80
'string_decoder': stringDecoder,
81
timers,
82
+ 'timers/promises': timersPromises,
83
tls,
84
tty,
85
url,
0 commit comments