Skip to content

Commit

Permalink
Bump next from 9.4.4 to 12.1.0 (#105)
Browse files Browse the repository at this point in the history
* Bump next from 9.4.4 to 12.1.0

Bumps [next](https://github.com/vercel/next.js) from 9.4.4 to 12.1.0.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v9.4.4...v12.1.0)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Create .nvmrc

* update react version and remove unused import

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Monica Powell <[email protected]>
  • Loading branch information
dependabot[bot] and M0nica authored May 14, 2022
1 parent 673440d commit 4bf1ae2
Show file tree
Hide file tree
Showing 8 changed files with 14,834 additions and 15,964 deletions.
3 changes: 1 addition & 2 deletions .huskyrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = {
hooks: {
"pre-commit":
"npm run prettier && npm run test && npm run build",
"pre-commit": "npm run prettier && npm run test && npm run build",
},
};
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12
5 changes: 4 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
18,111 changes: 10,499 additions & 7,612 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"prettier": "prettier --write --ignore-path ./gitignore \"**/*.+(js|json|ts|tsx)\""
},
"dependencies": {
"@babel/preset-typescript": "^7.10.4",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^26.0.14",
"next": "9.4.4",
"next": "12.1.0",
"prettier": "^2.1.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-twitter-embed": "^3.0.3"
},
"devDependencies": {
Expand All @@ -35,6 +35,6 @@
"babel-jest": "^26.3.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"typescript": "^3.9.5"
"typescript": "^4.6.4"
}
}
1 change: 0 additions & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import SEO from "../components/seo";
import Banner from "../components/banner";
import Header from "../components/header";
import Disclaimer from "../components/disclaimer";
import StatusCodeGrid from "../components/statusCodeGrid";
Expand Down
45 changes: 28 additions & 17 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
},
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
}
Loading

0 comments on commit 4bf1ae2

Please sign in to comment.