Skip to content
Merged
Changes from 1 commit
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
13 changes: 12 additions & 1 deletion dev-packages/e2e-tests/test-applications/nextjs-16/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"test:build": "pnpm install && pnpm build",
"test:build-webpack": "pnpm install && pnpm build-webpack",
"test:build-canary": "pnpm install && pnpm add next@canary && pnpm build",
"test:build-latest": "pnpm install && pnpm add next@latest && pnpm build",
"test:build-latest-webpack": "pnpm install && pnpm add next@latest && pnpm build-webpack",
"test:build-canary-webpack": "pnpm install && pnpm add next@canary && pnpm build-webpack",
"test:assert": "pnpm test:prod && pnpm test:dev",
"test:assert-webpack": "pnpm test:prod && pnpm test:dev-webpack"
Expand All @@ -25,7 +27,7 @@
"@sentry/core": "latest || *",
"ai": "^3.0.0",
"import-in-the-middle": "^1",
"next": "16.0.0-beta.0",
"next": "16.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"require-in-the-middle": "^7",
Expand All @@ -50,6 +52,15 @@
"build-command": "pnpm test:build-webpack",
"label": "nextjs-16 (webpack)",
"assert-command": "pnpm test:assert-webpack"
},
{
"build-command": "pnpm test:build-latest-webpack",
"label": "nextjs-16 (latest, webpack)",
"assert-command": "pnpm test:assert-webpack"
},
{
"build-command": "pnpm test:build-latest",
"label": "nextjs-16 (latest, turbopack)"
}
],
"optionalVariants": [
Expand Down
Loading