Skip to content

Commit

Permalink
bump: next.js v13 to v14 (#138)
Browse files Browse the repository at this point in the history
* bump: next.js

* fix: .eslintrc

* add: aria-label
  • Loading branch information
K-shir0 authored Dec 18, 2023
1 parent c8421f1 commit 8eab941
Show file tree
Hide file tree
Showing 5 changed files with 2,919 additions and 734 deletions.
29 changes: 28 additions & 1 deletion frontend/octavio/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,34 @@
"optionalDependencies": false
}
],
"no-unused-vars": "off"
"no-unused-vars": "off",
"jsx-a11y/control-has-associated-label": [ 2, {
"labelAttributes": ["label"],
"controlComponents": ["CustomComponent"],
"ignoreElements": [
"audio",
"canvas",
"embed",
"input",
"textarea",
"tr",
"td",
"video"
],
"ignoreRoles": [
"grid",
"listbox",
"menu",
"menubar",
"radiogroup",
"row",
"tablist",
"toolbar",
"tree",
"treegrid"
],
"depth": 3
}]
},
"env": {
"jest": true
Expand Down
3 changes: 3 additions & 0 deletions frontend/octavio/app/users/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ function Page() {
target="_blank"
rel="noopener noreferrer"
className="btn btn-circle btn-ghost btn-xs"
aria-label={`GitHub: ${member.profile?.github_id}`}
>
<GithubIcon />
</a>
Expand All @@ -113,6 +114,7 @@ function Page() {
target="_blank"
rel="noopener noreferrer"
className="btn btn-circle btn-ghost btn-xs"
aria-label={`Twitter: ${member.profile?.twitter_id}`}
>
<TwitterIcon />
</a>
Expand All @@ -123,6 +125,7 @@ function Page() {
target="_blank"
rel="noopener noreferrer"
className="btn btn-circle btn-ghost btn-xs"
aria-label={`Facebook: ${member.profile?.facebook_id}`}
>
<FacebookIcon />
</a>
Expand Down
10 changes: 5 additions & 5 deletions frontend/octavio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"daisyui": "^3.7.5",
"eslint": "8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.4.19",
"eslint-config-next": "^14.0.4",
"gray-matter": "^4.0.3",
"luxon": "^3.3.0",
"next": "^13.4.19",
"next": "^14.0.4",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down Expand Up @@ -58,8 +58,8 @@
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/luxon": "^3.3.1",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.32.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.0.4",
"autoprefixer": "^10.4.14",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-storybook": "^0.6.13",
Expand All @@ -72,7 +72,7 @@
"prettier": "^3.0.3",
"storybook": "^7.3.2",
"tailwindcss": "^3.3.3",
"vitest": "^0.32.2"
"vitest": "^1.0.4"
},
"msw": {
"workerDirectory": "public"
Expand Down
Loading

0 comments on commit 8eab941

Please sign in to comment.