react-email 5.2.5 → 5.2.6
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 +24 -0
- package/dev/CHANGELOG.md +2 -0
- package/dev/index.js +0 -4
- package/dev/package.json +1 -1
- package/dist/index.js +6371 -76
- package/package.json +3 -3
- package/src/commands/build.ts +40 -20
- package/src/index.ts +92 -53
- package/src/utils/preview/get-env-variables-for-preview-app.ts +9 -5
- package/src/utils/preview/hot-reloading/create-dependency-graph.spec.ts +20 -1
- package/src/utils/preview/hot-reloading/test/dependency-graph/inner/path-aliases.ts +1 -0
- package/src/actions/email-validation/__snapshots__/check-images.spec.tsx.snap +0 -84
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# react-email
|
|
2
2
|
|
|
3
|
+
## 5.2.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 11f56c5: fix RESEND_API_KEY being overwritten in email preview
|
|
8
|
+
|
|
9
|
+
## 5.3.0-canary.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 1b9df29: ensure that installed preview server also has dev dependencies
|
|
14
|
+
|
|
15
|
+
## 5.3.0-canary.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 0289914: fix random errors due to root directory not being the preview's path
|
|
20
|
+
|
|
21
|
+
## 5.3.0-canary.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- 7c18bd3: don't require installing @react-email/preview-server in the project, pack it into `$HOME/.react-email`
|
|
26
|
+
|
|
3
27
|
## 5.2.5
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dev/CHANGELOG.md
CHANGED
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
|
);
|