Skip to content

Commit c025a39

Browse files
committed
chore: deps
1 parent 6a2e345 commit c025a39

File tree

8 files changed

+813
-1297
lines changed

8 files changed

+813
-1297
lines changed

apps/demo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "A project to demo and test the `email preview` CLI command",
66
"license": "MIT",
77
"peerDependencies": {
8-
"react": "^18.2.0 || ^19"
8+
"react": "^19.1.0"
99
},
1010
"dependencies": {
1111
"jsx-email": "workspace:*"

apps/preview/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"postcss": "^8.4.32",
1919
"react": "^19",
2020
"react-dom": "^19",
21-
"react-router-dom": "7.0.1",
21+
"react-router-dom": "7.5.0",
2222
"shiki": "^1.18.0",
2323
"tailwindcss": "3.4.15",
2424
"titleize": "^4.0.0",
25-
"vite": "^5.2.11"
25+
"vite": "^6.2.6"
2626
}
2727
}

package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@
4848
"packageManager": "[email protected]",
4949
"pnpm": {
5050
"overrides": {
51-
"@types/react": "19.0.2",
52-
"@types/react-dom": "19.0.2",
53-
"react": "19.0.0",
54-
"react-dom": "19.0.0",
55-
"react-router-dom": "6.16.0"
51+
"@types/react": "19.1.0",
52+
"@types/react-dom": "19.1.0",
53+
"react": "19.1.0",
54+
"react-dom": "19.1.0",
55+
"react-router-dom": "7.5.0",
56+
"vite": "6.2.6"
5657
}
5758
}
5859
}

packages/create-jsx-email/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const isEmpty = (path: string) => {
4848
const { log } = console;
4949
const normalizePath = (filename: string) => filename.split(win32.sep).join(posix.sep);
5050
const asConst = ' as const';
51-
const typeDep = ',\n"@types/react": "^19.0.2",\n"typescript": "^5.2.2"';
51+
const typeDep = ',\n"@types/react": "^19.1.0",\n"typescript": "^5.8.3"';
5252
const typeProps = `\ninterface TemplateProps {
5353
email: string;
5454
name: string;

packages/jsx-email/package.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
"@jsx-email/plugin-inline": "workspace:^",
4848
"@jsx-email/plugin-minify": "workspace:^",
4949
"@jsx-email/plugin-pretty": "workspace:^",
50-
"react": "^18.2.0 || ^19",
51-
"react-dom": "^18.2.0 || ^19"
50+
"react": "^19.1.0",
51+
"react-dom": "^19.1.0"
5252
},
5353
"dependencies": {
5454
"@dot/log": "^0.2.0",
@@ -99,7 +99,7 @@
9999
"titleize": "^4.0.0",
100100
"unist-util-visit": "^5.0.0",
101101
"valibot": "^1.0.0",
102-
"vite": "^6.2.6",
102+
"vite": "6.2.6",
103103
"yargs-parser": "^21.1.1"
104104
},
105105
"devDependencies": {
@@ -112,10 +112,14 @@
112112
"@types/mime-types": "^2.1.4",
113113
"@types/mustache": "^4.2.5",
114114
"@types/pretty": "^2.0.1",
115+
"@types/react": "19.1.0",
116+
"@types/react-dom": "19.1.0",
115117
"@types/semver": "^7.5.8",
116118
"@types/source-map-support": "^0.5.10",
117119
"@types/yargs-parser": "^21.0.3",
118120
"hast": "^1.0.0",
121+
"react": "19.1.0",
122+
"react-dom": "19.1.0",
119123
"unified": "^11.0.4"
120124
},
121125
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)