react-email 5.0.8 → 5.1.1

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,17 @@
1
1
  # react-email
2
2
 
3
+ ## 5.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8b7a660: remove use of devEngines which npm detects
8
+
9
+ ## 5.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 3c2aa37: use turbo for `email build`
14
+
3
15
  ## 5.0.8
4
16
 
5
17
  ## 5.0.7
package/dev/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # email-dev
2
2
 
3
+ ## 0.0.4
4
+
3
5
  ## 0.0.3
4
6
 
5
7
  ## 0.0.2
package/dev/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "email-dev",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "bin": "index.js",
5
5
  "private": true,
6
6
  "type": "module",
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.8",
90
+ version: "5.1.1",
91
91
  description: "A live preview of your emails right in your browser.",
92
92
  bin: { "email": "./dist/index.js" },
93
93
  type: "module",
@@ -106,10 +106,6 @@ var package_default = {
106
106
  },
107
107
  keywords: ["react", "email"],
108
108
  engines: { "node": ">=20.0.0" },
109
- devEngines: { "runtime": {
110
- "name": "node",
111
- "version": ">=22.0.0"
112
- } },
113
109
  dependencies: {
114
110
  "@babel/parser": "^7.27.0",
115
111
  "@babel/traverse": "^7.27.0",
@@ -123,7 +119,7 @@ var package_default = {
123
119
  "log-symbols": "^7.0.0",
124
120
  "mime-types": "^3.0.0",
125
121
  "normalize-path": "^3.0.0",
126
- "nypm": "0.6.0",
122
+ "nypm": "0.6.2",
127
123
  "ora": "^8.0.0",
128
124
  "prompts": "2.4.2",
129
125
  "socket.io": "^4.8.1",
@@ -135,7 +131,7 @@ var package_default = {
135
131
  "@types/babel__traverse": "7.20.7",
136
132
  "@types/mime-types": "2.1.4",
137
133
  "@types/prompts": "2.4.9",
138
- "next": "16.0.9",
134
+ "next": "16.0.10",
139
135
  "react": "19.0.0",
140
136
  "react-dom": "19.0.0",
141
137
  "typescript": "5.8.3"
@@ -242,7 +238,7 @@ export function generateStaticParams() {
242
238
  const updatePackageJson = async (builtPreviewAppPath) => {
243
239
  const packageJsonPath = path.resolve(builtPreviewAppPath, "./package.json");
244
240
  const packageJson = JSON.parse(await fs.promises.readFile(packageJsonPath, "utf8"));
245
- packageJson.scripts.build = "next build --webpack";
241
+ packageJson.scripts.build = "next build";
246
242
  packageJson.scripts.start = "next start";
247
243
  delete packageJson.scripts.postbuild;
248
244
  packageJson.name = "preview-server";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-email",
3
- "version": "5.0.8",
3
+ "version": "5.1.1",
4
4
  "description": "A live preview of your emails right in your browser.",
5
5
  "bin": {
6
6
  "email": "./dist/index.js"
@@ -19,12 +19,6 @@
19
19
  "engines": {
20
20
  "node": ">=20.0.0"
21
21
  },
22
- "devEngines": {
23
- "runtime": {
24
- "name": "node",
25
- "version": ">=22.0.0"
26
- }
27
- },
28
22
  "dependencies": {
29
23
  "@babel/parser": "^7.27.0",
30
24
  "@babel/traverse": "^7.27.0",
@@ -38,7 +32,7 @@
38
32
  "log-symbols": "^7.0.0",
39
33
  "mime-types": "^3.0.0",
40
34
  "normalize-path": "^3.0.0",
41
- "nypm": "0.6.0",
35
+ "nypm": "0.6.2",
42
36
  "ora": "^8.0.0",
43
37
  "prompts": "2.4.2",
44
38
  "socket.io": "^4.8.1",
@@ -49,11 +43,11 @@
49
43
  "@types/babel__traverse": "7.20.7",
50
44
  "@types/mime-types": "2.1.4",
51
45
  "@types/prompts": "2.4.9",
52
- "next": "16.0.9",
46
+ "next": "16.0.10",
53
47
  "react": "19.0.0",
54
48
  "react-dom": "19.0.0",
55
49
  "typescript": "5.8.3",
56
- "@react-email/components": "1.0.1"
50
+ "@react-email/components": "1.0.3"
57
51
  },
58
52
  "scripts": {
59
53
  "build": "tsdown",
@@ -137,7 +137,7 @@ const updatePackageJson = async (builtPreviewAppPath: string) => {
137
137
  devDependencies: Record<string, string>;
138
138
  };
139
139
  // Turbopack has some errors with the imports in @react-email/tailwind
140
- packageJson.scripts.build = 'next build --webpack';
140
+ packageJson.scripts.build = 'next build';
141
141
  packageJson.scripts.start = 'next start';
142
142
  delete packageJson.scripts.postbuild;
143
143