Skip to content

Commit a5167ee

Browse files
committed
merge canary
2 parents 68245ce + 2dab0b6 commit a5167ee

File tree

6,301 files changed

+253271
-271591
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,301 files changed

+253271
-271591
lines changed

.eslintignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ packages/react-refresh-utils/**/*.js
2020
packages/react-dev-overlay/lib/**
2121
**/__tmp__/**
2222
.github/actions/next-stats-action/.work
23-
.github/actions/validate-docs-links/lib/index.js
24-
.github/actions/needs-triage/index.js
25-
.github/actions/*/index.mjs
2623
packages/next-codemod/transforms/__testfixtures__/**/*
2724
packages/next-codemod/transforms/__tests__/**/*
2825
packages/next-codemod/**/*.js
@@ -40,4 +37,5 @@ bench/nested-deps/**
4037
bench/nested-deps-app-router/**
4138
packages/next-bundle-analyzer/index.d.ts
4239
examples/with-typescript-graphql/lib/gql/
43-
test/development/basic/hmr/components/parse-error.js
40+
test/development/basic/hmr/components/parse-error.js
41+
packages/next-swc/docs/assets/**/*

.eslintrc.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,6 @@
113113
"jsdoc/no-undefined-types": "error"
114114
}
115115
},
116-
{
117-
"files": [
118-
"test/**/*",
119-
"examples/**/*",
120-
"packages/create-next-app/templates/**/*"
121-
],
122-
"rules": { "react/react-in-jsx-scope": "off" }
123-
},
124116
{
125117
"files": ["examples/**/*"],
126118
"rules": {
@@ -351,7 +343,7 @@
351343
"react/no-direct-mutation-state": "warn",
352344
"react/no-is-mounted": "warn",
353345
"react/no-typos": "error",
354-
"react/react-in-jsx-scope": "error",
346+
"react/react-in-jsx-scope": "off",
355347
"react/require-render-return": "error",
356348
"react/style-prop-object": "warn",
357349
"react-hooks/rules-of-hooks": "error",

.git-blame-ignore-revs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# All revisions specified in the `.git-blame-ignore-revs` file, are hidden from the blame
2+
# when running `git blame --ignore-revs-file .git-blame-ignore-revs`.
3+
# https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view
4+
5+
# chore(examples): use default prettier for examples/templates (#60530)
6+
4466ba436b996263307171d344cca199e8087744

.github/ISSUE_TEMPLATE/1.bug_report.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,6 @@ body:
4040
placeholder: 'Following the steps from the previous section, I expected A to happen, but I observed B instead'
4141
validations:
4242
required: true
43-
- type: checkboxes
44-
attributes:
45-
label: Verify canary release
46-
description: 'Please run `npm install next@canary` to try the canary version of Next.js that ships daily. It includes all features and fixes that have not been released to the stable version yet. Some issues may already be fixed in the canary version, so please verify that your issue reproduces before opening a new issue.'
47-
options:
48-
- label: I verified that the issue exists in the latest Next.js canary release
49-
required: true
5043
- type: textarea
5144
attributes:
5245
label: Provide environment information
@@ -90,6 +83,7 @@ body:
9083
- 'MDX (@next/mdx)'
9184
- 'Metadata (metadata, generateMetadata, next/head)'
9285
- 'Middleware / Edge (API routes, runtime)'
86+
- 'Module resolution (CJS / ESM, module resolving)'
9387
- 'Operating System (Windows, MacOS, Linux)'
9488
- 'Package manager (npm, pnpm, Yarn)'
9589
- 'Routing (next/router, next/navigation, next/link)'
@@ -102,6 +96,18 @@ body:
10296
- 'TypeScript (plugin, built-in types)'
10397
validations:
10498
required: true
99+
- type: dropdown
100+
attributes:
101+
label: Which stage(s) are affected? (Select all that apply)
102+
multiple: true
103+
options:
104+
- 'next dev (local)'
105+
- 'next build (local)'
106+
- 'next start (local)'
107+
- 'Vercel (Deployed)'
108+
- 'Other (Deployed)'
109+
validations:
110+
required: true
105111
- type: markdown
106112
attributes:
107113
value: |

.github/actions/needs-triage/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/actions/needs-triage/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ description: 'vercel/next.js specific auto-labeling action'
33
author: 'Next.js team'
44
runs:
55
using: 'node20'
6-
main: 'index.js'
6+
main: 'dist/index.js'
File renamed without changes.

.github/actions/needs-triage/dist/licenses.txt

Lines changed: 659 additions & 0 deletions
Large diffs are not rendered by default.

.github/actions/needs-triage/licenses.txt

Lines changed: 0 additions & 659 deletions
This file was deleted.

.github/actions/needs-triage/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"private": true,
3-
"exports": "./index.js",
3+
"exports": "./dist/index.js",
44
"files": [
55
"src"
66
],
77
"scripts": {
8-
"build": "pnpm types && ncc -m -o . build lib/index.js --license licenses.txt",
8+
"build": "pnpm types && ncc build lib/index.js -m -o dist --license licenses.txt",
99
"types": "tsc"
1010
},
1111
"devDependencies": {

0 commit comments

Comments
 (0)