Skip to content

Commit

Permalink
Bump Next.js version to 14.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed May 27, 2024
1 parent 915a710 commit 5281ac9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/next.js-with-runtime-rendering/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.1",
"next": "^14.2.1",
"next": "^14.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/next.js-with-static-extraction/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.1",
"next": "^14.2.1",
"next": "^14.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/create/tests/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"@master/css": "2.0.0-rc.14",
"next": "^14.2.1",
"next": "^14.2.3",
"react": "^18",
"react-dom": "^18"
},
Expand Down
2 changes: 1 addition & 1 deletion website/app/root-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default async function RootLayout({ children, locale, bodyClassName, styl
translations: any
}) {
return (
<html lang={locale} style={{ display: 'none' }}>
<html lang={locale} style={process.env.NODE_ENV === 'development' ? { display: 'none' } : undefined}>
<head>
<link rel="icon" href="/favicon.ico" type="image/x-icon" sizes="any" />
<script dangerouslySetInnerHTML={{ __html: PRE_INIT_SCRIPT }}></script>
Expand Down
8 changes: 4 additions & 4 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "node ../../../scripts/assets && tsx ./script.ts && next dev",
"build": "node ../../../scripts/assets && cd ../ && pnpm build && cd website && tsx ./script.ts && next build",
"build": "node ../../../scripts/assets && cd ../ && pnpm build && cd website && tsx ./script.ts && next build && node ../packages/cli/dist/bin/index.mjs render \".next/**/*.html\"",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit"
Expand All @@ -24,17 +24,17 @@
"@master/styled.react": "^2.0.2",
"@master/theme-mode.react": "^1.1.0",
"@monaco-editor/react": "^4.6.0",
"@next/mdx": "^14.2.1",
"@next/mdx": "^14.2.3",
"@tabler/icons-react": "^2.47.0",
"@vercel/speed-insights": "^1.0.10",
"accept-language": "^3.0.18",
"class-variant": "^2.0.2",
"clone-deep": "^4.0.1",
"eslint-config-next": "^14.2.1",
"eslint-config-next": "^14.2.3",
"monaco-editor": "^0.45.0",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"next": "^14.2.1",
"next": "^14.2.3",
"parent-module": "^3.1.0",
"react": "^18.2.0",
"react-countup": "^6.5.0",
Expand Down

0 comments on commit 5281ac9

Please sign in to comment.