21 Commits

Author SHA1 Message Date
36f55b07d6 chore(deps): update actions/setup-node action to v5
All checks were successful
Lint / Lint (push) Successful in 23s
Lint / Lint (pull_request) Successful in 23s
2025-09-06 00:02:51 +00:00
5fe4c8d1e5 chore(deps): update dependency @types/node to v22
All checks were successful
Lint / Lint (pull_request) Successful in 21s
Lint / Lint (push) Successful in 21s
2025-08-30 06:39:37 +02:00
ce5f930eb1 fix(deps): update dependency lucide-react to ^0.542.0
All checks were successful
Lint / Lint (push) Successful in 25s
2025-08-30 03:03:02 +00:00
54899f7f0f chore(deps): update dependency typescript-eslint to v8.41.0
All checks were successful
Lint / Lint (push) Successful in 24s
2025-08-30 02:03:13 +00:00
7cff97cf29 fix(deps): update nextjs monorepo to v15.5.2
All checks were successful
Lint / Lint (push) Successful in 21s
2025-08-30 01:03:26 +00:00
a60112aa6d chore(deps): update react monorepo
All checks were successful
Lint / Lint (push) Successful in 23s
2025-08-30 00:02:46 +00:00
d38e1d0169 fix eslint
All checks were successful
Lint / Lint (push) Successful in 24s
2025-08-29 10:01:18 +02:00
a55978e602 commit next-env.d.ts for working lint in CI
Some checks failed
Lint / Lint (push) Has been cancelled
2025-08-29 10:00:13 +02:00
38799425d4 Merge pull request 'fix(deps): update dependency lucide-react to ^0.541.0' (#5) from renovate/lucide-monorepo into main
Some checks failed
Lint / Lint (push) Failing after 18s
2025-08-23 21:01:07 +02:00
1b3a9a2510 Merge pull request 'chore(deps): update dependency typescript-eslint to v8.40.0' (#4) from renovate/typescript-eslint-monorepo into main
Some checks failed
Lint / Lint (push) Has been cancelled
2025-08-23 21:01:00 +02:00
54220b3f66 fix(deps): update dependency lucide-react to ^0.541.0
All checks were successful
Lint / Lint (push) Successful in 24s
Lint / Lint (pull_request) Successful in 25s
2025-08-23 18:01:15 +00:00
b6e1a3cfba chore(deps): update dependency typescript-eslint to v8.40.0
Some checks failed
Lint / Lint (push) Failing after 16s
Lint / Lint (pull_request) Failing after 19s
2025-08-23 18:01:12 +00:00
54666a259c chore(deps): update dependency eslint to v9.34.0
All checks were successful
Lint / Lint (push) Successful in 26s
2025-08-23 17:01:13 +00:00
77784cd526 chore(deps): update dependency tw-animate-css to v1.3.7
All checks were successful
Lint / Lint (push) Successful in 26s
2025-08-23 16:01:10 +00:00
f0e4be1f25 chore(deps): update dependency @types/node to v20.19.11
All checks were successful
Lint / Lint (push) Successful in 25s
2025-08-23 15:01:10 +00:00
86cc04055b chore(deps): update actions/checkout digest to 08eba0b
All checks were successful
Lint / Lint (push) Successful in 22s
2025-08-23 14:01:00 +00:00
f6ea77beca chore(deps): pin dependencies
All checks were successful
Lint / Lint (push) Successful in 24s
2025-08-23 13:01:08 +00:00
a8a46cb27c specify package manager
All checks were successful
Lint / Lint (push) Successful in 25s
2025-08-23 14:44:22 +02:00
1474635605 typed routes
Some checks failed
Lint / Lint (push) Failing after 11s
2025-08-23 14:37:13 +02:00
d7f380007f eslint 2025-08-23 14:37:08 +02:00
b4ddc3dbba nextjs 15.5 codemod 2025-08-23 13:19:16 +02:00
7 changed files with 446 additions and 269 deletions

View File

@@ -13,13 +13,13 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Install pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: 22
cache: 'pnpm'

2
.gitignore vendored
View File

@@ -38,4 +38,4 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
# next-env.d.ts # needed for linting in CI

View File

@@ -6,10 +6,18 @@ const compat = new FlatCompat({
baseDirectory: import.meta.dirname,
});
export default tseslint.config(
export default [
// Global ignores
{
ignores: ['.next', '*.mjs', 'node_modules', 'tailwind.config.ts'],
ignores: [
'node_modules/**',
'.next/**',
'out/**',
'build/**',
'next-env.d.ts',
'*.mjs',
'tailwind.config.ts',
],
},
// 1. Next.js core rules (includes react, react-hooks, and next)
@@ -28,4 +36,4 @@ export default tseslint.config(
},
},
},
);
];

6
next-env.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference path="./.next/types/routes.d.ts" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View File

@@ -1,7 +1,8 @@
import type { NextConfig } from "next";
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
typedRoutes: true,
images: {
formats: ['image/avif'],
},

View File

@@ -6,31 +6,38 @@
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint && npx tsc --noEmit"
"lint": "eslint . && npx tsc --noEmit"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.539.0",
"next": "15.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"lucide-react": "^0.542.0",
"next": "15.5.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "^5",
"typescript-eslint": "^8.39.1"
"@eslint/eslintrc": "3.3.1",
"@tailwindcss/postcss": "4.1.12",
"@types/node": "22.18.0",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"eslint": "9.34.0",
"eslint-config-next": "15.5.2",
"eslint-config-prettier": "10.1.8",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.6.14",
"tailwindcss": "4.1.12",
"tw-animate-css": "1.3.7",
"typescript": "5.9.2",
"typescript-eslint": "8.41.0"
},
"packageManager": "pnpm@10.15.0",
"pnpm": {
"overrides": {
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9"
}
}
}

641
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff