react-email 4.2.4 → 4.2.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 +6 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/commands/export.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -106,7 +106,7 @@ import prompts from "prompts";
|
|
|
106
106
|
// package.json
|
|
107
107
|
var package_default = {
|
|
108
108
|
name: "react-email",
|
|
109
|
-
version: "4.2.
|
|
109
|
+
version: "4.2.5",
|
|
110
110
|
description: "A live preview of your emails right in your browser.",
|
|
111
111
|
bin: {
|
|
112
112
|
email: "./dist/index.js"
|
|
@@ -1262,7 +1262,7 @@ var exportTemplates = async (pathToWhereEmailMarkupShouldBeDumped, emailsDirecto
|
|
|
1262
1262
|
bundle: true,
|
|
1263
1263
|
entryPoints: allTemplates,
|
|
1264
1264
|
format: "cjs",
|
|
1265
|
-
jsx: "
|
|
1265
|
+
jsx: "automatic",
|
|
1266
1266
|
loader: { ".js": "jsx" },
|
|
1267
1267
|
logLevel: "silent",
|
|
1268
1268
|
outExtension: { ".js": ".cjs" },
|
package/package.json
CHANGED
package/src/commands/export.ts
CHANGED