Skip to content

Commit e421d6a

Browse files
authored
Merge branch 'canary' into update-react-to-d900fadbf
2 parents ea9aaa0 + ad42b61 commit e421d6a

File tree

61 files changed

+553
-375
lines changed

Some content is hidden

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

61 files changed

+553
-375
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"registry": "https://registry.npmjs.org/"
1717
}
1818
},
19-
"version": "13.5.5-canary.1"
19+
"version": "13.5.5-canary.2"
2020
}

lint-staged.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ module.exports = {
2727
`git add ${escapedFileNames}`,
2828
]
2929
},
30+
'**/*.rs': (filenames) => {
31+
const escapedFileNames = filenames
32+
.map((filename) => (isWin ? filename : escape([filename])))
33+
.join(' ')
34+
return [`cargo fmt -- ${escapedFileNames}`, `git add ${escapedFileNames}`]
35+
},
3036
}
3137

3238
function escape(str) {

packages/create-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-next-app",
3-
"version": "13.5.5-canary.1",
3+
"version": "13.5.5-canary.2",
44
"keywords": [
55
"react",
66
"next",

packages/create-next-app/templates/app-tw/js/app/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import './globals.css'
21
import { Inter } from 'next/font/google'
2+
import './globals.css'
33

44
const inter = Inter({ subsets: ['latin'] })
55

packages/create-next-app/templates/app-tw/ts/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import './globals.css'
21
import type { Metadata } from 'next'
32
import { Inter } from 'next/font/google'
3+
import './globals.css'
44

55
const inter = Inter({ subsets: ['latin'] })
66

packages/create-next-app/templates/app/js/app/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import './globals.css'
21
import { Inter } from 'next/font/google'
2+
import './globals.css'
33

44
const inter = Inter({ subsets: ['latin'] })
55

packages/create-next-app/templates/app/ts/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import './globals.css'
21
import type { Metadata } from 'next'
32
import { Inter } from 'next/font/google'
3+
import './globals.css'
44

55
const inter = Inter({ subsets: ['latin'] })
66

packages/eslint-config-next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-next",
3-
"version": "13.5.5-canary.1",
3+
"version": "13.5.5-canary.2",
44
"description": "ESLint configuration used by Next.js.",
55
"main": "index.js",
66
"license": "MIT",
@@ -10,7 +10,7 @@
1010
},
1111
"homepage": "https://nextjs.org/docs/app/building-your-application/configuring/eslint#eslint-config",
1212
"dependencies": {
13-
"@next/eslint-plugin-next": "13.5.5-canary.1",
13+
"@next/eslint-plugin-next": "13.5.5-canary.2",
1414
"@rushstack/eslint-patch": "^1.3.3",
1515
"@typescript-eslint/parser": "^5.4.2 || ^6.0.0",
1616
"eslint-import-resolver-node": "^0.3.6",

packages/eslint-plugin-next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/eslint-plugin-next",
3-
"version": "13.5.5-canary.1",
3+
"version": "13.5.5-canary.2",
44
"description": "ESLint plugin for Next.js.",
55
"main": "dist/index.js",
66
"license": "MIT",

packages/font/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/font",
3-
"version": "13.5.5-canary.1",
3+
"version": "13.5.5-canary.2",
44
"repository": {
55
"url": "vercel/next.js",
66
"directory": "packages/font"

0 commit comments

Comments
 (0)