react-email 5.2.0 → 5.2.2
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
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.2.
|
|
90
|
+
version: "5.2.2",
|
|
91
91
|
description: "A live preview of your emails right in your browser.",
|
|
92
92
|
bin: { "email": "./dist/index.js" },
|
|
93
93
|
type: "module",
|
|
@@ -131,9 +131,9 @@ var package_default = {
|
|
|
131
131
|
"@types/babel__traverse": "7.20.7",
|
|
132
132
|
"@types/mime-types": "2.1.4",
|
|
133
133
|
"@types/prompts": "2.4.9",
|
|
134
|
-
"next": "16.
|
|
135
|
-
"react": "19.
|
|
136
|
-
"react-dom": "19.
|
|
134
|
+
"next": "16.1.1",
|
|
135
|
+
"react": "19.2.3",
|
|
136
|
+
"react-dom": "19.2.3",
|
|
137
137
|
"shlex": "3.0.0",
|
|
138
138
|
"tsx": "4.21.0",
|
|
139
139
|
"typescript": "5.8.3"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-email",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"description": "A live preview of your emails right in your browser.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"email": "./dist/index.js"
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@types/babel__traverse": "7.20.7",
|
|
44
44
|
"@types/mime-types": "2.1.4",
|
|
45
45
|
"@types/prompts": "2.4.9",
|
|
46
|
-
"next": "16.
|
|
47
|
-
"react": "19.
|
|
48
|
-
"react-dom": "19.
|
|
46
|
+
"next": "16.1.1",
|
|
47
|
+
"react": "19.2.3",
|
|
48
|
+
"react-dom": "19.2.3",
|
|
49
49
|
"shlex": "3.0.0",
|
|
50
50
|
"tsx": "4.21.0",
|
|
51
51
|
"typescript": "5.8.3",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import path from 'node:path';
|
|
2
|
-
import { getEmailsDirectoryMetadata } from './get-emails-directory-metadata
|
|
2
|
+
import { getEmailsDirectoryMetadata } from './get-emails-directory-metadata';
|
|
3
3
|
|
|
4
4
|
test('getEmailsDirectoryMetadata on demo emails', async () => {
|
|
5
5
|
const emailsDirectoryPath = path.resolve(
|