Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [22]
steps:
- name: Checkout
uses: actions/checkout@v6
Expand All @@ -17,7 +16,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
node-version-file: .node-version
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
pull-requests: write
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 24
node-version-file: .node-version
cache: pnpm
- run: pnpm install
- run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 24
node-version-file: .node-version
cache: pnpm
- run: pnpm install
- run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
env:
Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24.19.0
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"drizzle-orm": "^0.45.2",
"lucide-vue-next": "^0.577.0",
"motion-v": "^1.10.3",
"nuxt": "^4.5.1",
"nuxt": "^4.5.2",
"nuxt-auth-utils": "^0.5.30",
"nuxt-charts": "^2.1.4",
"pg": "^8.19.0",
Expand All @@ -54,26 +54,28 @@
"shiki-stream": "^0.1.4",
"striptags": "3.2.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"vue-sonner": "^2.0.9",
"zod": "^4.3.6"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.2",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^24.11.0",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^24.13.3",
"drizzle-kit": "^0.31.10",
"eslint": "^10.0.2",
"typescript": "^5.9.3",
"vue-tsc": "^3.2.5",
"vue-tsc": "^3.3.9",
"wrangler": "^4.86.0"
},
"pnpm": {
"overrides": {
"@vue/compiler-sfc": "3.5.40",
"esbuild": "^0.28.1"
}
},
"packageManager": "pnpm@10.30.3"
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=24.11.0 <25"
}
}
Loading
Loading