Skip to content

Commit ac68f16

Browse files
authored
Merge branch 'canary' into cms-builder-io-example
2 parents fcd03ee + 5747435 commit ac68f16

File tree

23 files changed

+96
-44
lines changed

23 files changed

+96
-44
lines changed

.github/labeler.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"packages/next-codemod/**",
1111
"packages/eslint-plugin-next/**",
1212
"packages/eslint-config-next/**",
13-
"packages/next-env/**"
13+
"packages/next-env/**",
14+
"packages/next-swc/**"
1415
],
1516
"created-by: Chrome Aurora": [
1617
{ "type": "user", "pattern": "spanicker" },
@@ -31,6 +32,11 @@
3132
{ "type": "user", "pattern": "leerob" },
3233
{ "type": "user", "pattern": "kdy1" },
3334
{ "type": "user", "pattern": "timneutkens" }
35+
],
36+
"created-by: Next.js docs team": [
37+
{ "type": "user", "pattern": "MaedahBatool" },
38+
{ "type": "user", "pattern": "molebox" },
39+
{ "type": "user", "pattern": "ismaelrumzan" }
3440
]
3541
}
3642
}

docs/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Next.js can be deployed to any hosting provider that supports Node.js. Make sure
7676

7777
`next build` builds the production application in the `.next` folder. After building, `next start` starts a Node.js server that supports [hybrid pages](/docs/basic-features/pages.md), serving both statically generated and server-side rendered pages.
7878

79-
If you are using [`next/image`](/docs/basic-features/image-optimization.md), consider adding `sharp` for more performant [Image Optimization](/docs/basic-features/image-optimization.md) in your production environment by running `npm install sharp` in your project directory.
79+
If you are using [`next/image`](/docs/basic-features/image-optimization.md), consider adding `sharp` for more performant [Image Optimization](/docs/basic-features/image-optimization.md) in your production environment by running `npm install sharp` in your project directory. On Linux platforms, `sharp` may require [additional configuration](https://sharp.pixelplumbing.com/install#linux-memory-allocator) to prevent excessive memory usage.
8080

8181
### Docker Image
8282

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
"registry": "https://registry.npmjs.org/"
1818
}
1919
},
20-
"version": "12.0.5-canary.12"
20+
"version": "12.0.5-canary.13"
2121
}

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": "12.0.5-canary.12",
3+
"version": "12.0.5-canary.13",
44
"keywords": [
55
"react",
66
"next",

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": "12.0.5-canary.12",
3+
"version": "12.0.5-canary.13",
44
"description": "ESLint configuration used by NextJS.",
55
"main": "index.js",
66
"license": "MIT",
@@ -9,7 +9,7 @@
99
"directory": "packages/eslint-config-next"
1010
},
1111
"dependencies": {
12-
"@next/eslint-plugin-next": "12.0.5-canary.12",
12+
"@next/eslint-plugin-next": "12.0.5-canary.13",
1313
"@rushstack/eslint-patch": "^1.0.8",
1414
"@typescript-eslint/parser": "^5.0.0",
1515
"eslint-import-resolver-node": "^0.3.4",

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": "12.0.5-canary.12",
3+
"version": "12.0.5-canary.13",
44
"description": "ESLint plugin for NextJS.",
55
"main": "lib/index.js",
66
"license": "MIT",

packages/next-bundle-analyzer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/bundle-analyzer",
3-
"version": "12.0.5-canary.12",
3+
"version": "12.0.5-canary.13",
44
"main": "index.js",
55
"license": "MIT",
66
"repository": {

packages/next-codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/codemod",
3-
"version": "12.0.5-canary.12",
3+
"version": "12.0.5-canary.13",
44
"license": "MIT",
55
"dependencies": {
66
"chalk": "4.1.0",

packages/next-env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/env",
3-
"version": "12.0.5-canary.12",
3+
"version": "12.0.5-canary.13",
44
"keywords": [
55
"react",
66
"next",

packages/next-mdx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/mdx",
3-
"version": "12.0.5-canary.12",
3+
"version": "12.0.5-canary.13",
44
"main": "index.js",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)