Skip to content

Commit 88e2f47

Browse files
committed
Update
1 parent 44ebbdc commit 88e2f47

File tree

15 files changed

+933
-706
lines changed

15 files changed

+933
-706
lines changed

.github/workflows/codeql.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
schedule:
9+
- cron: '28 2 * * 3'
10+
11+
jobs:
12+
analyze:
13+
name: Analyze (${{ matrix.language }})
14+
runs-on: ubuntu-latest
15+
permissions:
16+
security-events: write
17+
packages: read
18+
actions: read
19+
contents: read
20+
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
include:
25+
- language: javascript-typescript
26+
build-mode: none
27+
28+
steps:
29+
- name: Checkout repository
30+
uses: actions/checkout@v4
31+
32+
- name: Setup Node.js
33+
uses: actions/setup-node@v4
34+
with:
35+
node-version: 22
36+
37+
- name: Install pnpm
38+
run: npm install -g pnpm
39+
40+
- name: Install dependencies with pnpm
41+
run: pnpm install --frozen-lockfile
42+
43+
- name: Initialize CodeQL
44+
uses: github/codeql-action/init@v3
45+
with:
46+
languages: ${{ matrix.language }}
47+
build-mode: ${{ matrix.build-mode }}
48+
49+
- name: Perform CodeQL Analysis
50+
uses: github/codeql-action/analyze@v3
51+
with:
52+
category: "/language:${{ matrix.language }}"

local.wrangler.toml

-6
This file was deleted.

next.config.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
12
import { withSentryConfig } from "@sentry/nextjs";
23
import type { NextConfig } from "next";
34

45
const production = process.env.NODE_ENV === "production";
56

7+
if (!production) {
8+
setupDevPlatform();
9+
}
10+
611
const nextConfig: NextConfig = {
712
compiler: {
813
removeConsole: production,

package.json

+12-15
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
"deploy": "pnpm run pages:build && wrangler pages deploy"
1515
},
1616
"dependencies": {
17-
"@next/third-parties": "^15.2.2",
17+
"@next/third-parties": "^15.2.3",
1818
"@reduxjs/toolkit": "^2.6.1",
1919
"@sentry/nextjs": "^8.55.0",
2020
"@vercel/speed-insights": "^1.2.0",
2121
"@vkontakte/icons": "^2.169.0",
2222
"@vkontakte/vkui": "^7.1.3",
23-
"axios": "^1.8.3",
23+
"axios": "^1.8.4",
2424
"clsx": "^2.1.1",
2525
"dayjs": "^1.11.13",
2626
"html-react-parser": "^5.2.2",
27-
"i18next": "^24.2.2",
27+
"i18next": "^24.2.3",
2828
"lodash": "^4.17.21",
29-
"lucide-react": "^0.474.0",
30-
"next": "^15.2.2",
29+
"lucide-react": "^0.482.0",
30+
"next": "^15.2.3",
3131
"normalize.css": "^8.0.1",
3232
"react": "^19.0.0",
3333
"react-dom": "^19.0.0",
@@ -39,23 +39,20 @@
3939
"react-virtuoso": "^4.12.5",
4040
"spoiled": "^0.4.0",
4141
"swr": "^2.3.3",
42-
"tailwind-merge": "^2.6.0"
42+
"tailwind-merge": "^3.0.2"
4343
},
4444
"devDependencies": {
45-
"@cloudflare/next-on-pages": "1.13.3",
45+
"@cloudflare/next-on-pages": "^1.13.10",
4646
"@emotion/react": "^11.14.0",
4747
"@types/lodash": "^4.17.16",
48-
"@types/node": "^22.13.10",
49-
"@types/react": "^19.0.10",
48+
"@types/node": "^22.13.11",
49+
"@types/react": "^19.0.12",
5050
"@types/react-dom": "^19.0.4",
51-
"eslint": "^9.22.0",
52-
"eslint-config-next": "^15.2.2",
51+
"eslint": "^9.23.0",
52+
"eslint-config-next": "^15.2.3",
5353
"postcss": "^8.5.3",
5454
"tailwindcss": "^3.4.17",
5555
"typescript": "^5.8.2",
56-
"vercel": "39.1.1"
57-
},
58-
"overrides": {
59-
"vercel": "$vercel"
56+
"vercel": "^41.4.1"
6057
}
6158
}

0 commit comments

Comments
 (0)