Skip to content

Commit 57188f9

Browse files
chore(deps): update nextjs monorepo (#1524)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: gabriel miranda <[email protected]>
1 parent 70ebcc6 commit 57188f9

File tree

18 files changed

+889
-546
lines changed

18 files changed

+889
-546
lines changed

.pnpmfile.cjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ const components = packages
1717
function readPackage(pkg) {
1818
if (components.includes(pkg.name)) {
1919
if ("react" in pkg.peerDependencies) {
20-
pkg.peerDependencies.react = "19.0.0-rc-187dd6a7-20240806";
20+
pkg.peerDependencies.react = "19.0.0-rc-02c0e824-20241028";
2121
}
2222
if ("react-dom" in pkg.peerDependencies) {
23-
pkg.peerDependencies["react-dom"] = "19.0.0-rc-187dd6a7-20240806";
23+
pkg.peerDependencies["react-dom"] = "19.0.0-rc-02c0e824-20241028";
2424
}
2525
}
2626
return pkg;

apps/demo/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
},
1111
"dependencies": {
1212
"@react-email/components": "workspace:*",
13-
"react": "19.0.0-rc-187dd6a7-20240806",
14-
"react-dom": "19.0.0-rc-187dd6a7-20240806",
13+
"react": "19.0.0-rc-02c0e824-20241028",
14+
"react-dom": "19.0.0-rc-02c0e824-20241028",
1515
"react-email": "workspace:*"
1616
},
1717
"devDependencies": {
18-
"next": "14.2.10",
18+
"next": "14.2.16",
1919
"@types/react": "npm:types-react@rc",
2020
"@types/react-dom": "npm:types-react-dom@rc",
2121
"tsx": "4.9.0"

apps/web/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
"@vercel/analytics": "1.0.1",
2424
"framer-motion": "12.0.0-alpha.0",
2525
"lucide-react": "^0.428.0",
26-
"next": "15.0.0-canary.117",
26+
"next": "15.0.2",
2727
"prism-react-renderer": "2.3.1",
28-
"react": "19.0.0-rc-187dd6a7-20240806",
29-
"react-dom": "19.0.0-rc-187dd6a7-20240806",
28+
"react": "19.0.0-rc-02c0e824-20241028",
29+
"react-dom": "19.0.0-rc-02c0e824-20241028",
3030
"react-email": "workspace:*",
3131
"resend": "3.5.0",
3232
"vaul": "^0.9.1"
3333
},
3434
"devDependencies": {
35-
"@next/eslint-plugin-next": "14.2.3",
35+
"@next/eslint-plugin-next": "14.2.16",
3636
"@radix-ui/colors": "1.0.1",
3737
"@radix-ui/react-select": "^2.1.1",
3838
"@radix-ui/react-slot": "1.1.0",

apps/web/src/app/components/[slug]/page.tsx

+8-6
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import { ComponentsView } from "../../../components/components-view";
88
import { IconArrowLeft } from "../../../components/icons/icon-arrow-left";
99

1010
interface ComponentPageParams {
11-
params: {
11+
params: Promise<{
1212
slug: string;
13-
};
13+
}>;
1414
}
1515

1616
export const dynamic = "force-static";
@@ -24,9 +24,10 @@ export const generateStaticParams = async () => {
2424
export const generateMetadata = async ({
2525
params,
2626
}: {
27-
params: { slug: string };
27+
params: Promise<{ slug: string }>;
2828
}) => {
29-
const slug = decodeURIComponent(params.slug);
29+
const { slug: rawSlug } = await params;
30+
const slug = decodeURIComponent(rawSlug);
3031
const foundCategory = componentsStructure.find(
3132
(category) => slugify(category.name) === slug,
3233
);
@@ -48,13 +49,14 @@ export const generateMetadata = async ({
4849
],
4950
},
5051
alternates: {
51-
canonical: `/components/${params.slug}`,
52+
canonical: `/components/${rawSlug}`,
5253
},
5354
};
5455
};
5556

5657
const ComponentPage: React.FC<ComponentPageParams> = async ({ params }) => {
57-
const slug = decodeURIComponent(params.slug);
58+
const { slug: rawSlug } = await params;
59+
const slug = decodeURIComponent(rawSlug);
5860
const foundCategory = componentsStructure.find(
5961
(category) => slugify(category.name) === slug,
6062
);

examples/aws-ses/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"@aws-sdk/client-ses": "3.341.0",
1919
"@react-email/components": "workspace:0.0.27",
20-
"react": "19.0.0-rc-187dd6a7-20240806",
21-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
20+
"react": "19.0.0-rc-02c0e824-20241028",
21+
"react-dom": "19.0.0-rc-02c0e824-20241028"
2222
},
2323
"devDependencies": {
2424
"eslint-config-custom": "workspace:*",

examples/mailersend/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"@react-email/components": "workspace:0.0.27",
1919
"mailersend": "^2.0.0",
20-
"react": "19.0.0-rc-187dd6a7-20240806",
21-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
20+
"react": "19.0.0-rc-02c0e824-20241028",
21+
"react-dom": "19.0.0-rc-02c0e824-20241028"
2222
},
2323
"devDependencies": {
2424
"eslint-config-custom": "workspace:*",

examples/nodemailer/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"@react-email/components": "workspace:0.0.27",
1919
"nodemailer": "6.9.9",
20-
"react": "19.0.0-rc-187dd6a7-20240806",
21-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
20+
"react": "19.0.0-rc-02c0e824-20241028",
21+
"react-dom": "19.0.0-rc-02c0e824-20241028"
2222
},
2323
"devDependencies": {
2424
"@types/nodemailer": "6.4.15",

examples/plunk/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"@plunk/node": "3.0.2",
1919
"@react-email/components": "workspace:0.0.27",
20-
"react": "19.0.0-rc-187dd6a7-20240806",
21-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
20+
"react": "19.0.0-rc-02c0e824-20241028",
21+
"react-dom": "19.0.0-rc-02c0e824-20241028"
2222
},
2323
"devDependencies": {
2424
"eslint-config-custom": "workspace:*",

examples/postmark/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"postmark": "3.0.14",
1919
"@react-email/components": "workspace:0.0.27",
20-
"react": "19.0.0-rc-187dd6a7-20240806",
21-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
20+
"react": "19.0.0-rc-02c0e824-20241028",
21+
"react-dom": "19.0.0-rc-02c0e824-20241028"
2222
},
2323
"devDependencies": {
2424
"eslint-config-custom": "workspace:*",

examples/resend/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"dependencies": {
1313
"next": "15.0.0-canary.117",
1414
"@react-email/components": "workspace:0.0.27",
15-
"react": "19.0.0-rc-187dd6a7-20240806",
16-
"react-dom": "19.0.0-rc-187dd6a7-20240806",
15+
"react": "19.0.0-rc-02c0e824-20241028",
16+
"react-dom": "19.0.0-rc-02c0e824-20241028",
1717
"resend": "4.0.0"
1818
},
1919
"devDependencies": {

examples/scaleway/next/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"@scaleway/sdk": "1.5.0",
1414
"next": "15.0.0-canary.117",
1515
"@react-email/components": "workspace:0.0.27",
16-
"react": "19.0.0-rc-187dd6a7-20240806",
17-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
16+
"react": "19.0.0-rc-02c0e824-20241028",
17+
"react-dom": "19.0.0-rc-02c0e824-20241028"
1818
},
1919
"devDependencies": {
2020
"@types/node": "18.14.6",

examples/scaleway/node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"dependencies": {
1717
"@scaleway/sdk": "1.4.0",
1818
"@react-email/components": "workspace:0.0.27",
19-
"react": "19.0.0-rc-187dd6a7-20240806",
20-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
19+
"react": "19.0.0-rc-02c0e824-20241028",
20+
"react-dom": "19.0.0-rc-02c0e824-20241028"
2121
},
2222
"devDependencies": {
2323
"eslint-config-custom": "workspace:*",

examples/sendgrid/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"@sendgrid/mail": "7.7.0",
1919
"@react-email/components": "workspace:0.0.27",
20-
"react": "19.0.0-rc-187dd6a7-20240806",
21-
"react-dom": "19.0.0-rc-187dd6a7-20240806"
20+
"react": "19.0.0-rc-02c0e824-20241028",
21+
"react-dom": "19.0.0-rc-02c0e824-20241028"
2222
},
2323
"devDependencies": {
2424
"eslint-config-custom": "workspace:*",

packages/react-email/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"glob": "10.3.4",
3838
"log-symbols": "4.1.0",
3939
"mime-types": "2.1.35",
40-
"next": "14.2.10",
40+
"next": "14.2.16",
4141
"normalize-path": "3.0.0",
4242
"ora": "5.4.1",
4343
"socket.io": "4.8.0"

packages/tailwind/integrations/nextjs/package-lock.json

+44-44
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/tailwind/integrations/nextjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@react-email/components": "^0.0.15",
1515
"@react-email/tailwind": "file:.yalc/@react-email/tailwind",
16-
"next": "14.2.10",
16+
"next": "14.2.16",
1717
"react": "^18",
1818
"react-dom": "^18"
1919
},

packages/tailwind/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"eslint-plugin-regex": "1.10.0",
6262
"postcss": "8.4.40",
6363
"postcss-selector-parser": "6.0.16",
64-
"react-dom": "19.0.0-rc-187dd6a7-20240806",
64+
"react-dom": "19.0.0-rc-02c0e824-20241028",
6565
"shelljs": "0.8.5",
6666
"tailwindcss": "3.4.10",
6767
"tsconfig": "workspace:*",

0 commit comments

Comments
 (0)