react-email 5.0.4 → 5.0.5
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 +2 -0
- package/dist/index.js +6 -2
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -87,7 +87,7 @@ const getEmailsDirectoryMetadata = async (absolutePathToEmailsDirectory, keepFil
|
|
|
87
87
|
//#region package.json
|
|
88
88
|
var package_default = {
|
|
89
89
|
name: "react-email",
|
|
90
|
-
version: "5.0.
|
|
90
|
+
version: "5.0.5",
|
|
91
91
|
description: "A live preview of your emails right in your browser.",
|
|
92
92
|
bin: { "email": "./dist/index.js" },
|
|
93
93
|
type: "module",
|
|
@@ -105,7 +105,11 @@ var package_default = {
|
|
|
105
105
|
"directory": "packages/react-email"
|
|
106
106
|
},
|
|
107
107
|
keywords: ["react", "email"],
|
|
108
|
-
engines: { "node": ">=
|
|
108
|
+
engines: { "node": ">=20.0.0" },
|
|
109
|
+
devEngines: { "runtime": {
|
|
110
|
+
"name": "node",
|
|
111
|
+
"version": ">=22.0.0"
|
|
112
|
+
} },
|
|
109
113
|
dependencies: {
|
|
110
114
|
"@babel/parser": "^7.27.0",
|
|
111
115
|
"@babel/traverse": "^7.27.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-email",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.5",
|
|
4
4
|
"description": "A live preview of your emails right in your browser.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"email": "./dist/index.js"
|
|
@@ -17,7 +17,13 @@
|
|
|
17
17
|
"email"
|
|
18
18
|
],
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": ">=
|
|
20
|
+
"node": ">=20.0.0"
|
|
21
|
+
},
|
|
22
|
+
"devEngines": {
|
|
23
|
+
"runtime": {
|
|
24
|
+
"name": "node",
|
|
25
|
+
"version": ">=22.0.0"
|
|
26
|
+
}
|
|
21
27
|
},
|
|
22
28
|
"dependencies": {
|
|
23
29
|
"@babel/parser": "^7.27.0",
|