Skip to content

Commit b41d425

Browse files
authored
Upgrade to Next 15.5 (#80)
1 parent 7477624 commit b41d425

File tree

7 files changed

+172
-171
lines changed

7 files changed

+172
-171
lines changed

eslint.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ const compat = new FlatCompat({
88
});
99

1010
const config = [
11+
{
12+
ignores: [
13+
"node_modules/**",
14+
".next/**",
15+
"out/**",
16+
"build/**",
17+
"next-env.d.ts",
18+
],
19+
},
1120
eslint.configs.recommended,
1221
reactHooks.configs.recommended,
1322
eslintConfigPrettier,

next.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3+
typedRoutes: true,
34
logging: {
45
fetches: {
56
fullUrl: true,

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"build:dynamic": "next build --experimental-build-mode compile",
2828
"start": "next start",
2929
"check": "pnpm types:check && pnpm lint && pnpm format:check",
30-
"lint": "next lint",
31-
"lint:fix": "next lint --fix",
32-
"types:check": "tsc --noEmit",
30+
"lint": "eslint .",
31+
"lint:fix": "eslint --fix .",
32+
"types:check": "next typegen && tsc --noEmit",
3333
"format:check": "prettier --check .",
3434
"format:write": "prettier --write .",
3535
"test:browser": "playwright test",
@@ -41,8 +41,8 @@
4141
"@vercel/analytics": "^1.5.0",
4242
"class-variance-authority": "^0.7.1",
4343
"clsx": "^2.1.1",
44-
"lucide-react": "^0.511.0",
45-
"next": "^15.4.6",
44+
"lucide-react": "^0.541.0",
45+
"next": "^15.5.0",
4646
"next-themes": "^0.4.6",
4747
"react": "^19.1.1",
4848
"react-dom": "^19.1.1",
@@ -53,17 +53,17 @@
5353
},
5454
"devDependencies": {
5555
"@eslint/eslintrc": "^3.3.1",
56-
"@eslint/js": "^9.33.0",
57-
"@next/eslint-plugin-next": "^15.4.6",
58-
"@playwright/test": "^1.54.2",
56+
"@eslint/js": "^9.34.0",
57+
"@next/eslint-plugin-next": "^15.5.0",
58+
"@playwright/test": "^1.55.0",
5959
"@tailwindcss/postcss": "^4.1.12",
6060
"@types/node": "^22.17.2",
61-
"@types/react": "^19.1.10",
61+
"@types/react": "^19.1.11",
6262
"@types/react-dom": "^19.1.7",
6363
"@typescript-eslint/eslint-plugin": "^8.32.1",
6464
"babel-plugin-react-compiler": "19.1.0-rc.2",
65-
"eslint": "^9.33.0",
66-
"eslint-config-next": "^15.4.6",
65+
"eslint": "^9.34.0",
66+
"eslint-config-next": "^15.5.0",
6767
"eslint-config-prettier": "^10.1.8",
6868
"eslint-plugin-react-hooks": "6.0.0-rc.1",
6969
"msw": "^2.10.5",

0 commit comments

Comments
 (0)