This commit is contained in:
2025-07-15 16:32:44 +02:00
parent 20c0bf2770
commit b1e8fb3353
5 changed files with 5586 additions and 8480 deletions

View File

@@ -7,21 +7,25 @@ on:
- "**" # matches every branch - "**" # matches every branch
jobs: jobs:
eslint: lint_and_check:
name: Lint name: Lint and Check
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 - name: Install pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with: with:
node-version: 20 node-version: 22
cache: "npm" cache: "pnpm"
- run: npm i
- uses: sibiraj-s/action-eslint@c24ff92cabb3ad38994c99f5583c59125ea040b0 # v4.0.1 - name: Install dependencies
with: run: pnpm install
eslint-args: "--ignore-path=.gitignore --quiet"
extensions: "js,jsx,ts,tsx" - name: Run check
annotations: true run: pnpm run check
all-files: true

8460
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -6,20 +6,20 @@
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint && npx tsc --noEmit" "check": "next lint && npx tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cssnano": "^7.0.1", "cssnano": "^7.1.0",
"lucide-react": "^0.525.0", "lucide-react": "^0.525.0",
"next": "15.3.5", "next": "15.3.5",
"next-plausible": "^3.12.0", "next-plausible": "^3.12.4",
"postcss-flexbugs-fixes": "^5.0.2", "postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.0.0", "postcss-preset-env": "^10.2.4",
"react": "19.1.0", "react": "19.1.0",
"react-dom": "19.1.0", "react-dom": "19.1.0",
"tailwind-merge": "^3.0.0", "tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7" "tailwindcss-animate": "^1.0.7"
}, },
"devDependencies": { "devDependencies": {
@@ -34,5 +34,5 @@
"turbo": "2.5.4", "turbo": "2.5.4",
"typescript": "5.8.3" "typescript": "5.8.3"
}, },
"packageManager": "npm@11.4.2" "packageManager": "pnpm@10.13.1"
} }

5559
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

3
pnpm-workspace.yaml Normal file
View File

@@ -0,0 +1,3 @@
onlyBuiltDependencies:
- '@tailwindcss/oxide'
- sharp