Skip to content

Commit 8cc9515

Browse files
authored
website: upgrade to Next 16, fix libraries sorting (#42)
1 parent dcc74ac commit 8cc9515

File tree

8 files changed

+1446
-956
lines changed

8 files changed

+1446
-956
lines changed

libraries.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297
},
298298
"react-native-iap": {
299299
"description": "In-app purchases for React Native (StoreKit 2 / Play Billing v8).",
300-
"installCommand": "react-native-nitro-modules react-native-iap",
300+
"installCommand": "react-native-iap react-native-nitro-modules",
301301
"android": true,
302302
"ios": true,
303303
"maintainersUsernames": ["hyochan"],

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"repository": "github:react-native-community/nightly-tests",
1515
"devDependencies": {
16-
"@babel/core": "^7.28.3",
16+
"@babel/core": "^7.28.5",
1717
"jest": "^27.0.0",
1818
"babel-jest": "^27.0.0",
1919
"babel-preset-env": "^1.7.0"
@@ -23,5 +23,5 @@
2323
"test:watch": "jest --watch --config jest.config.js"
2424
},
2525
"license": "MIT",
26-
"author": ""
26+
"author": "React Native Community"
2727
}

website/next.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const basePath = process.env.REPOSITORY_NAME
77

88
const nextConfig: NextConfig = {
99
reactStrictMode: true,
10+
reactCompiler: true,
1011
poweredByHeader: false,
1112
output: "export",
1213
basePath,
@@ -20,6 +21,9 @@ const nextConfig: NextConfig = {
2021
},
2122
},
2223
},
24+
experimental: {
25+
turbopackFileSystemCacheForDev: true,
26+
},
2327
};
2428

2529
export default nextConfig;

website/package.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,42 @@
66
"node": ">=22"
77
},
88
"scripts": {
9-
"dev": "next dev --turbopack",
10-
"build": "next build --turbopack",
9+
"dev": "next dev",
10+
"build": "next build",
1111
"start": "next start",
1212
"lint": "eslint",
1313
"data:fetch": "node ./scripts/fetch-data.mjs"
1414
},
1515
"dependencies": {
1616
"@radix-ui/react-tooltip": "^1.2.8",
1717
"@tanstack/react-table": "^8.21.3",
18-
"next": "^15.5.2",
18+
"next": "^16.0.1",
1919
"next-themes": "^0.4.6",
20-
"react": "^19.1.1",
21-
"react-dom": "^19.1.1",
20+
"react": "^19.2.0",
21+
"react-dom": "^19.2.0",
2222
"tailwind-merge": "^3.3.1"
2323
},
2424
"devDependencies": {
2525
"@eslint/eslintrc": "^3.3.1",
26-
"@eslint/js": "^9.33.0",
27-
"@next/eslint-plugin-next": "15.5.2",
26+
"@eslint/js": "^9.38.0",
27+
"@next/eslint-plugin-next": "16.0.1",
2828
"@svgr/webpack": "^8.1.0",
29-
"@tailwindcss/postcss": "^4.1.12",
30-
"@types/node": "^22.17.2",
31-
"@types/react": "^19.1.10",
32-
"@types/react-dom": "^19.1.7",
33-
"dotenv": "^17.2.1",
34-
"eslint": "^9.33.0",
29+
"@tailwindcss/postcss": "^4.1.16",
30+
"@types/node": "^22.18.13",
31+
"@types/react": "^19.2.2",
32+
"@types/react-dom": "^19.2.2",
33+
"babel-plugin-react-compiler": "^1.0.0",
34+
"dotenv": "^17.2.3",
35+
"eslint": "^9.38.0",
3536
"eslint-config-prettier": "^10.1.8",
3637
"eslint-plugin-import": "^2.32.0",
3738
"eslint-plugin-prettier": "^5.5.4",
3839
"eslint-plugin-react": "^7.37.5",
39-
"eslint-plugin-svgo": "^0.11.1",
40-
"firebase-admin": "^13.4.0",
40+
"eslint-plugin-svgo": "^0.11.3",
41+
"firebase-admin": "^13.5.0",
4142
"prettier": "^3.6.2",
42-
"tailwindcss": "^4.1.12",
43-
"typescript": "^5.9.2",
44-
"typescript-eslint": "^8.40.0"
43+
"tailwindcss": "^4.1.16",
44+
"typescript": "^5.9.3",
45+
"typescript-eslint": "^8.46.2"
4546
}
4647
}

0 commit comments

Comments
 (0)