Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ build
ios
.expo
expo-env.d.ts
next-env.d.ts

# solid
.output
Expand Down
5 changes: 0 additions & 5 deletions examples/minimal-appdir/next-env.d.ts

This file was deleted.

1 change: 1 addition & 0 deletions examples/minimal-appdir/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const analyze = require("@next/bundle-analyzer")({
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: { ignoreDuringBuilds: true },
turbopack: {},
typescript: { ignoreBuildErrors: true },
};

Expand Down
6 changes: 3 additions & 3 deletions examples/minimal-appdir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"dependencies": {
"@uploadthing/react": "7.3.3",
"next": "15.5.8",
"react": "19.2.2",
"react-dom": "19.2.2",
"next": "16.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uploadthing": "7.7.4"
},
"devDependencies": {
Expand Down
30 changes: 24 additions & 6 deletions examples/minimal-appdir/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,38 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"module": "Preserve",
"target": "ES2022",
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [{ "name": "next" }],
"plugins": [
{
"name": "next"
}
],
"paths": {
"~/*": ["./src/*"]
"~/*": [
"./src/*"
]
}
},
"include": [".next/types/**/*.ts", "next-env.d.ts", "src", "*.js"],
"exclude": ["node_modules"]
"include": [
".next/types/**/*.ts",
"next-env.d.ts",
"src",
"*.js",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}
5 changes: 0 additions & 5 deletions examples/minimal-pagedir/next-env.d.ts

This file was deleted.

6 changes: 3 additions & 3 deletions examples/minimal-pagedir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"dependencies": {
"@uploadthing/react": "7.3.3",
"next": "15.5.8",
"react": "19.2.2",
"react-dom": "19.2.2",
"next": "16.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uploadthing": "7.7.4"
},
"devDependencies": {
Expand Down
29 changes: 23 additions & 6 deletions examples/minimal-pagedir/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,37 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"module": "Preserve",
"target": "ES2022",
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [{ "name": "next" }],
"plugins": [
{
"name": "next"
}
],
"paths": {
"~/*": ["./src/*"]
"~/*": [
"./src/*"
]
}
},
"include": [".next/types/**/*.ts", "next-env.d.ts", "src", "*.js"],
"exclude": ["node_modules"]
"include": [
".next/types/**/*.ts",
"next-env.d.ts",
"src",
"*.js"
],
"exclude": [
"node_modules"
]
}
5 changes: 0 additions & 5 deletions examples/profile-picture/next-env.d.ts

This file was deleted.

6 changes: 3 additions & 3 deletions examples/profile-picture/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
"client-only": "^0.0.1",
"drizzle-orm": "^0.38.3",
"lucide-react": "^0.469.0",
"next": "15.5.8",
"next": "16.1.0",
"next-auth": "5.0.0-beta.25",
"radix-ui": "1.3.4",
"react": "19.2.2",
"react-dom": "19.2.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-easy-crop": "^5.2.0",
"server-only": "0.0.1",
"sonner": "^2.0.3",
Expand Down
30 changes: 24 additions & 6 deletions examples/profile-picture/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,38 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"module": "Preserve",
"target": "ES2022",
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [{ "name": "next" }],
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": [".next/types/**/*.ts", "next-env.d.ts", "src", "*.js"],
"exclude": ["node_modules"]
"include": [
".next/types/**/*.ts",
"next-env.d.ts",
"src",
"*.js",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}
5 changes: 0 additions & 5 deletions examples/with-clerk-appdir/next-env.d.ts

This file was deleted.

6 changes: 3 additions & 3 deletions examples/with-clerk-appdir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"@clerk/nextjs": "^6.9.6",
"@t3-oss/env-nextjs": "^0.11.1",
"@uploadthing/react": "7.3.3",
"next": "15.5.8",
"react": "19.2.2",
"react-dom": "19.2.2",
"next": "16.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uploadthing": "7.7.4",
"zod": "^3.24.1"
},
Expand Down
30 changes: 24 additions & 6 deletions examples/with-clerk-appdir/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,38 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"module": "Preserve",
"target": "ES2022",
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [{ "name": "next" }],
"plugins": [
{
"name": "next"
}
],
"paths": {
"~/*": ["./src/*"]
"~/*": [
"./src/*"
]
}
},
"include": [".next/types/**/*.ts", "next-env.d.ts", "src", "*.js"],
"exclude": ["node_modules"]
"include": [
".next/types/**/*.ts",
"next-env.d.ts",
"src",
"*.js",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}
5 changes: 0 additions & 5 deletions examples/with-clerk-pagesdir/next-env.d.ts

This file was deleted.

6 changes: 3 additions & 3 deletions examples/with-clerk-pagesdir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"@clerk/nextjs": "^6.9.6",
"@t3-oss/env-nextjs": "^0.11.1",
"@uploadthing/react": "7.3.3",
"next": "15.5.8",
"react": "19.2.2",
"react-dom": "19.2.2",
"next": "16.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uploadthing": "7.7.4",
"zod": "^3.24.1"
},
Expand Down
29 changes: 23 additions & 6 deletions examples/with-clerk-pagesdir/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,37 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"module": "Preserve",
"target": "ES2022",
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [{ "name": "next" }],
"plugins": [
{
"name": "next"
}
],
"paths": {
"~/*": ["./src/*"]
"~/*": [
"./src/*"
]
}
},
"include": [".next/types/**/*.ts", "next-env.d.ts", "src", "*.js"],
"exclude": ["node_modules"]
"include": [
".next/types/**/*.ts",
"next-env.d.ts",
"src",
"*.js"
],
"exclude": [
"node_modules"
]
}
5 changes: 0 additions & 5 deletions examples/with-drizzle-appdir/next-env.d.ts

This file was deleted.

7 changes: 4 additions & 3 deletions examples/with-drizzle-appdir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"@t3-oss/env-nextjs": "^0.11.1",
"@uploadthing/react": "7.3.3",
"drizzle-orm": "^0.38.3",
"next": "15.5.8",
"react": "19.2.2",
"react-dom": "19.2.2",
"next": "16.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uploadthing": "7.7.4",
"zod": "^3.24.1"
},
Expand All @@ -27,6 +27,7 @@
"@types/node": "^22.10.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"drizzle-kit": "0.31.8",
"eslint": "9.25.1",
"eslint-config-next": "15.5.8",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Update eslint-config-next to match Next.js version.

The eslint-config-next package is at version 15.5.8 while next has been upgraded to 16.1.0. This version mismatch may cause linting rule incompatibilities.

🔎 Suggested fix
-    "eslint-config-next": "15.5.8",
+    "eslint-config-next": "16.1.0",

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In examples/with-drizzle-appdir/package.json around line 32, eslint-config-next
is pinned to 15.5.8 while Next.js is 16.1.0; update the eslint-config-next
dependency to a version compatible with Next.js 16 (e.g., "^16.1.0" or the exact
Next.js minor match) in package.json and run npm/yarn install to update lockfile
so lint rules align with the Next.js version.

"typescript": "5.8.3"
Expand Down
Loading
Loading