Skip to content

Commit 5ce032c

Browse files
Merge branch 'main' into Adnanarodiya/main
2 parents e31878e + 57c72fc commit 5ce032c

File tree

5 files changed

+71
-91
lines changed

5 files changed

+71
-91
lines changed

.eslintrc.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/check-linting-and-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
node-version: [20]
19+
node-version: [22]
2020

2121
steps:
2222
- name: Check out Git repository
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up pnpm
2626
uses: pnpm/action-setup@v4
2727
with:
28-
version: 9
28+
version: 10
2929

3030
- name: Use Node.js ${{ matrix.node-version }}
3131
uses: actions/setup-node@v4

eslint.config.mjs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { defineConfig } from "eslint/config";
2+
import path from "node:path";
3+
import { fileURLToPath } from "node:url";
4+
import js from "@eslint/js";
5+
import { FlatCompat } from "@eslint/eslintrc";
6+
7+
const __filename = fileURLToPath(import.meta.url);
8+
const __dirname = path.dirname(__filename);
9+
const compat = new FlatCompat({
10+
baseDirectory: __dirname,
11+
recommendedConfig: js.configs.recommended,
12+
allConfig: js.configs.all
13+
});
14+
15+
export default defineConfig([{
16+
extends: compat.extends("next/core-web-vitals"),
17+
18+
rules: {
19+
"@next/next/no-img-element": 0,
20+
},
21+
}]);

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"axios": "^1.11.0",
1818
"class-variance-authority": "^0.7.1",
1919
"clsx": "^2.1.1",
20-
"daisyui": "^5.0.50",
20+
"daisyui": "^4.12.24",
2121
"framer-motion": "^12.23.12",
2222
"jotai": "^2.12.5",
2323
"lucide-react": "^0.536.0",
2424
"next": "^15.4.5",
25-
"next-auth": "5.0.0-beta.20",
25+
"next-auth": "5.0.0-beta.29",
2626
"next-cloudinary": "^6.16.0",
2727
"next-seo": "^6.8.0",
2828
"nextjs-progressbar": "^0.0.16",
@@ -36,6 +36,8 @@
3636
"zod": "^4.0.14"
3737
},
3838
"devDependencies": {
39+
"@eslint/eslintrc": "^3.3.1",
40+
"@eslint/js": "^9.32.0",
3941
"@types/node": "^24.1.0",
4042
"@types/react": "19.1.9",
4143
"@types/twuni__emojify": "^1.0.2",

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)