Skip to content

Commit 0abd494

Browse files
committed
Merge branch 'main' into ep/1679-follow-redirects-in-handler
2 parents 508a756 + 04bcac0 commit 0abd494

File tree

18 files changed

+2029
-671
lines changed

18 files changed

+2029
-671
lines changed

demos/base-path/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"typescript": "^4.6.3"
1414
},
1515
"dependencies": {
16-
"next": "^12.3.2-canary.43"
16+
"next": "^13.0.0"
1717
},
1818
"scripts": {
1919
"test": "echo \"Error: no test specified\" && exit 1"

demos/canary/netlify.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ command = "next build"
33
publish = ".next"
44
ignore = "if [ $CACHED_COMMIT_REF == $COMMIT_REF ]; then (exit 1); else git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF ../..; fi;"
55

6-
[build.environment]
7-
TERM = "xterm"
8-
NODE_VERSION = "17"
9-
106
[[plugins]]
11-
package = "../plugin-wrapper/"
7+
package = "@netlify/plugin-nextjs"
128

139
# This is a fake plugin, that makes it run npm install
1410
[[plugins]]
1511
package = "@netlify/plugin-local-install-core"
12+
13+
[[plugins]]
14+
package = "../plugin-wrapper"

demos/canary/package-lock.json

Lines changed: 173 additions & 167 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/canary/package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,19 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"next": "^12.2.0",
12+
"next": "^12.3.1",
1313
"react": "18.1.0",
1414
"react-dom": "18.1.0"
1515
},
1616
"devDependencies": {
17-
"eslint": "8.22.0"
17+
"@netlify/plugin-nextjs": "*",
18+
"@types/fs-extra": "^9.0.13",
19+
"@types/jest": "^27.4.1",
20+
"@types/node": "^17.0.25",
21+
"critters": "^0.0.16",
22+
"husky": "^7.0.4",
23+
"if-env": "^1.0.4",
24+
"npm-run-all": "^4.1.5",
25+
"typescript": "^4.6.3"
1826
}
1927
}

demos/custom-routes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"typescript": "^4.7.4"
1515
},
1616
"dependencies": {
17-
"next": "^12.3.2-canary.43"
17+
"next": "^13.0.0"
1818
},
1919
"scripts": {
2020
"build": "next build",

demos/default/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@reach/dialog": "^0.16.2",
2222
"@reach/visually-hidden": "^0.16.0",
2323
"@vercel/og": "^0.0.15",
24-
"next": "^12.3.2-canary.43",
24+
"next": "^13.0.0",
2525
"react": "^18.0.0",
2626
"react-dom": "^18.0.0"
2727
},

demos/middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"@netlify/next": "*",
1313
"@netlify/plugin-nextjs": "*",
14-
"next": "^12.3.2-canary.43",
14+
"next": "^13.0.0",
1515
"react": "18.0.0",
1616
"react-dom": "18.0.0"
1717
},

demos/next-auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
],
2424
"license": "MIT",
2525
"dependencies": {
26-
"next": "^12.3.2-canary.43",
26+
"next": "^13.0.0",
2727
"next-auth": "^4.15.0",
2828
"nodemailer": "^6.6.3",
2929
"react": "^18.0.0",

demos/next-export/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"description": "",
55
"dependencies": {
6-
"next": "^12.3.2-canary.43"
6+
"next": "^13.0.0"
77
},
88
"devDependencies": {
99
"@netlify/plugin-nextjs": "*",

0 commit comments

Comments
 (0)