react-email 5.2.5 → 5.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # react-email
2
2
 
3
+ ## 5.2.7
4
+
5
+ ## 5.2.6
6
+
7
+ ### Patch Changes
8
+
9
+ - 11f56c5: fix RESEND_API_KEY being overwritten in email preview
10
+
11
+ ## 5.3.0-canary.2
12
+
13
+ ### Patch Changes
14
+
15
+ - 1b9df29: ensure that installed preview server also has dev dependencies
16
+
17
+ ## 5.3.0-canary.1
18
+
19
+ ### Patch Changes
20
+
21
+ - 0289914: fix random errors due to root directory not being the preview's path
22
+
23
+ ## 5.3.0-canary.0
24
+
25
+ ### Minor Changes
26
+
27
+ - 7c18bd3: don't require installing @react-email/preview-server in the project, pack it into `$HOME/.react-email`
28
+
3
29
  ## 5.2.5
4
30
 
5
31
  ### Patch Changes
package/dev/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # email-dev
2
2
 
3
+ ## 0.0.6
4
+
3
5
  ## 0.0.5
4
6
 
5
7
  ## 0.0.4
package/dev/index.js CHANGED
@@ -13,10 +13,6 @@ const tsx = child_process.spawn(
13
13
  {
14
14
  cwd: process.cwd(),
15
15
  shell: true,
16
- env: {
17
- ...process.env,
18
- NODE_OPTIONS: `${process.env.NODE_OPTIONS ?? ''} --experimental-vm-modules --disable-warning=ExperimentalWarning`,
19
- },
20
16
  stdio: 'inherit',
21
17
  },
22
18
  );
package/dev/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "email-dev",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "bin": "index.js",
5
5
  "private": true,
6
6
  "type": "module",