react-email 4.1.0-canary.4 → 4.1.0-canary.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 +58 -0
- package/dist/cli/index.mjs +261 -187
- package/dist/preview/.next/BUILD_ID +1 -1
- package/dist/preview/.next/app-build-manifest.json +32 -32
- package/dist/preview/.next/build-manifest.json +14 -14
- package/dist/preview/.next/diagnostics/framework.json +1 -1
- package/dist/preview/.next/next-minimal-server.js.nft.json +1 -1
- package/dist/preview/.next/next-server.js.nft.json +1 -1
- package/dist/preview/.next/prerender-manifest.json +3 -3
- package/dist/preview/.next/required-server-files.json +8 -7
- package/dist/preview/.next/server/app/_not-found/page.js +1 -1
- package/dist/preview/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/dist/preview/.next/server/app/favicon.ico/route.js +1 -1
- package/dist/preview/.next/server/app/favicon.ico/route.js.nft.json +1 -1
- package/dist/preview/.next/server/app/page.js +1 -1
- package/dist/preview/.next/server/app/page.js.nft.json +1 -1
- package/dist/preview/.next/server/app/page_client-reference-manifest.js +1 -1
- package/dist/preview/.next/server/app/preview/[...slug]/page.js +188 -128
- package/dist/preview/.next/server/app/preview/[...slug]/page.js.nft.json +1 -1
- package/dist/preview/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +1 -1
- package/dist/preview/.next/server/chunks/134.js +6 -0
- package/dist/preview/.next/server/chunks/235.js +15 -0
- package/dist/preview/.next/server/chunks/315.js +1 -0
- package/dist/preview/.next/server/chunks/343.js +20 -0
- package/dist/preview/.next/server/chunks/428.js +14 -0
- package/dist/preview/.next/server/chunks/963.js +1 -0
- package/dist/preview/.next/server/middleware-build-manifest.js +1 -1
- package/dist/preview/.next/server/next-font-manifest.js +1 -1
- package/dist/preview/.next/server/next-font-manifest.json +1 -1
- package/dist/preview/.next/server/pages/500.html +1 -1
- package/dist/preview/.next/server/pages/_app.js +1 -1
- package/dist/preview/.next/server/pages/_app.js.nft.json +1 -1
- package/dist/preview/.next/server/pages/_document.js +1 -1
- package/dist/preview/.next/server/pages/_document.js.nft.json +1 -1
- package/dist/preview/.next/server/pages/_error.js +1 -1
- package/dist/preview/.next/server/pages/_error.js.nft.json +1 -1
- package/dist/preview/.next/server/server-reference-manifest.js +1 -1
- package/dist/preview/.next/server/server-reference-manifest.json +1 -1
- package/dist/preview/.next/static/{JZPm9ao1byHQqJdt3oG1X → EYH0WN4--LLC3GZrZIVN8}/_buildManifest.js +1 -1
- package/dist/preview/.next/static/chunks/107-3043079e7cb8bcae.js +1 -0
- package/dist/preview/.next/static/chunks/293-297b1eb2241f9a70.js +1 -0
- package/dist/preview/.next/static/chunks/3bd82e28-cda2c00a924937c5.js +1 -0
- package/dist/preview/.next/static/chunks/45-1021fac82f766268.js +1 -0
- package/dist/preview/.next/static/chunks/484-a7b30a88a7939680.js +1 -0
- package/dist/preview/.next/static/chunks/589-817d8691661d370e.js +1 -0
- package/dist/preview/.next/static/chunks/902-c34acb56733e0ce1.js +1 -0
- package/dist/preview/.next/static/chunks/app/_not-found/page-4cbc7dce3ad33336.js +1 -0
- package/dist/preview/.next/static/chunks/app/layout-46a09d953364e102.js +1 -0
- package/dist/preview/.next/static/chunks/app/page-65fd67d48528e2ba.js +1 -0
- package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-5e69ffe7506383a0.js +1 -0
- package/dist/preview/.next/static/chunks/f33a14d2-ec7c5f0b91818561.js +6 -0
- package/dist/preview/.next/static/chunks/framework-b887e9fc751a9906.js +1 -0
- package/dist/preview/.next/static/chunks/main-9a03e7ba8acb1900.js +1 -0
- package/dist/preview/.next/static/chunks/main-app-dbd8e1ec12eabb66.js +1 -0
- package/dist/preview/.next/static/chunks/pages/_app-542a93a5a214e1c0.js +1 -0
- package/dist/preview/.next/static/chunks/pages/_error-d5fe1b1612642f76.js +1 -0
- package/dist/preview/.next/static/chunks/webpack-31c45daa2bd82a7b.js +1 -0
- package/dist/preview/.next/static/css/6f42d128f111d7fa.css +3 -0
- package/dist/preview/.next/trace +28 -27
- package/package.json +43 -43
- package/src/actions/email-validation/check-compatibility.ts +1 -1
- package/src/actions/email-validation/check-images.spec.tsx +1 -1
- package/src/actions/email-validation/check-links.spec.tsx +1 -1
- package/src/actions/email-validation/quick-fetch.ts +1 -1
- package/src/actions/render-email-by-path.tsx +2 -2
- package/src/app/preview/[...slug]/preview.tsx +1 -1
- package/src/components/sidebar/file-tree-directory-children.tsx +7 -2
- package/src/components/toolbar.tsx +1 -0
- package/src/contexts/emails.tsx +1 -3
- package/src/contexts/fragment-identifier.tsx +3 -1
- package/src/contexts/preview.tsx +1 -3
- package/src/hooks/use-email-rendering-result.ts +1 -1
- package/src/hooks/use-hot-reload.ts +1 -1
- package/src/utils/__snapshots__/get-email-component.spec.ts.snap +1 -1
- package/src/utils/caniemail/ast/get-object-variables.ts +1 -1
- package/src/utils/caniemail/tailwind/generate-tailwind-rules.ts +1 -1
- package/src/utils/caniemail/tailwind/get-tailwind-config.ts +1 -1
- package/src/utils/caniemail/tailwind/get-tailwind-metadata.ts +1 -1
- package/src/utils/get-email-component.ts +1 -1
- package/src/utils/get-emails-directory-metadata.ts +24 -13
- package/src/utils/index.ts +2 -2
- package/src/utils/run-bundled-code.ts +1 -1
- package/tailwind.config.ts +2 -1
- package/tsconfig.json +1 -1
- package/dist/cli/index.d.mts +0 -1
- package/dist/cli/index.d.ts +0 -1
- package/dist/cli/index.js +0 -1325
- package/dist/preview/.next/server/chunks/362.js +0 -1
- package/dist/preview/.next/server/chunks/395.js +0 -1
- package/dist/preview/.next/server/chunks/574.js +0 -6
- package/dist/preview/.next/server/chunks/735.js +0 -13
- package/dist/preview/.next/server/chunks/840.js +0 -14
- package/dist/preview/.next/server/chunks/886.js +0 -8
- package/dist/preview/.next/static/chunks/246-e7336e2929971f63.js +0 -1
- package/dist/preview/.next/static/chunks/270-688096d43c717256.js +0 -1
- package/dist/preview/.next/static/chunks/539-6e9405ecdc007bb7.js +0 -1
- package/dist/preview/.next/static/chunks/587-11b31fa1b8f77a29.js +0 -1
- package/dist/preview/.next/static/chunks/782947c8-c6cfd05e68542601.js +0 -1
- package/dist/preview/.next/static/chunks/803-db74f262c4755323.js +0 -1
- package/dist/preview/.next/static/chunks/853-a01d49f63a859f3d.js +0 -1
- package/dist/preview/.next/static/chunks/afa401a5-55858bf5265319eb.js +0 -6
- package/dist/preview/.next/static/chunks/app/_not-found/page-85e83b2d4bd569a2.js +0 -1
- package/dist/preview/.next/static/chunks/app/layout-58e02c2c8b197b04.js +0 -1
- package/dist/preview/.next/static/chunks/app/page-dd13899a1b8e35f9.js +0 -1
- package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-94fd27d6538e2c16.js +0 -1
- package/dist/preview/.next/static/chunks/framework-b5f555f62da46ed9.js +0 -1
- package/dist/preview/.next/static/chunks/main-a839e2fbd78a08fa.js +0 -1
- package/dist/preview/.next/static/chunks/main-app-2cfbaf0185a1cd0e.js +0 -1
- package/dist/preview/.next/static/chunks/pages/_app-ee26b5d329c4bb79.js +0 -1
- package/dist/preview/.next/static/chunks/pages/_error-90cb3f6367e28bcd.js +0 -1
- package/dist/preview/.next/static/chunks/webpack-6755bde10ea8daa8.js +0 -1
- package/dist/preview/.next/static/css/67e57230289273a9.css +0 -3
- /package/dist/preview/.next/static/{JZPm9ao1byHQqJdt3oG1X → EYH0WN4--LLC3GZrZIVN8}/_ssgManifest.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# react-email
|
|
2
2
|
|
|
3
|
+
## 4.1.0-canary.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 11c4600: Add support for hot reloading with tsconfig path aliases
|
|
8
|
+
|
|
9
|
+
## 4.1.0-canary.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b947f98: Pre-render email templates on hover
|
|
14
|
+
|
|
3
15
|
## 4.1.0-canary.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -33,6 +45,52 @@
|
|
|
33
45
|
|
|
34
46
|
- 4a0d4e3: Theme switcher for email template
|
|
35
47
|
|
|
48
|
+
## 4.0.13
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- 8e4afce: fix hot reloading support for users with `NodeNext`-style imports
|
|
53
|
+
|
|
54
|
+
## 4.0.12
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- aa518a3: Add an explicit error when running Node <= 17
|
|
59
|
+
|
|
60
|
+
## 4.0.11
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- 1a17219: fix improper `require` in `email export`
|
|
65
|
+
- 45ab698: update next to 15.3.1
|
|
66
|
+
|
|
67
|
+
## 4.0.10
|
|
68
|
+
|
|
69
|
+
### Patch Changes
|
|
70
|
+
|
|
71
|
+
- 5ef9fe8: fix support for `import ... = require(...)` syntax
|
|
72
|
+
- 4c7f597: fix `email dev` not working with `traversal` error
|
|
73
|
+
|
|
74
|
+
## 4.0.9
|
|
75
|
+
|
|
76
|
+
### Patch Changes
|
|
77
|
+
|
|
78
|
+
- 643d841: Add .json import support for hot reloading
|
|
79
|
+
- f21a983: fix Node 18 support
|
|
80
|
+
- cd02449: Ensure dependencies outside emails directory are completely resolved
|
|
81
|
+
- 73a31ed: Fix dependent of dependents not causing hot reloads
|
|
82
|
+
- bdffd8c: fix backwards compatibility with `render` versions
|
|
83
|
+
- e7fa043: Fix access to files outside `static` directory
|
|
84
|
+
- 9aa033c: Use range of versions for dependencies
|
|
85
|
+
- ab70556: Fix non-email files being rendered during hot reloading
|
|
86
|
+
- 9c9aa5d: Add error message for when an email template does not have a default export
|
|
87
|
+
|
|
88
|
+
## 4.0.8
|
|
89
|
+
|
|
90
|
+
### Patch Changes
|
|
91
|
+
|
|
92
|
+
- ea579b5: Log out errors that happen when `export`'s esbuild fails
|
|
93
|
+
|
|
36
94
|
## 4.0.7
|
|
37
95
|
|
|
38
96
|
### Patch Changes
|