Skip to content

Commit

Permalink
Update all tests to use Next.js 13 and see what breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre de la Martiniere committed Oct 29, 2022
1 parent d3b0025 commit aa81f9f
Show file tree
Hide file tree
Showing 11 changed files with 1,091 additions and 920 deletions.
2 changes: 1 addition & 1 deletion scripts/next-update.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Look at how messy this script is :p

NEXT_VERSION="12.1.6"
NEXT_VERSION="13.0.0"
ROOT=$(pwd)

echo "==================== NPM ===================="
Expand Down
497 changes: 283 additions & 214 deletions src/__tests__/__apps__/npm-basic/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions src/__tests__/__apps__/npm-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
"license": "MIT",
"dependencies": {
"lodash-es": "^4.17.21",
"next": "12.1.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"next": "13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.43.4",
"shared": "file:../shared",
"shared-ts": "file:../shared-ts",
"shared-ui": "file:../shared-ui"
},
"devDependencies": {
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"typescript": "^4.4.4"
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"typescript": "^4.8.4"
}
}
10 changes: 5 additions & 5 deletions src/__tests__/__apps__/pnpm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"license": "MIT",
"dependencies": {
"lodash-es": "^4.17.21",
"next": "12.1.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"next": "13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.27.0",
"shared": "file:../shared",
"shared-ts": "file:../shared-ts",
"shared-ui": "file:../shared-ui"
},
"devDependencies": {
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8"
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8"
}
}
Loading

0 comments on commit aa81f9f

Please sign in to comment.