Skip to content

Commit 207380f

Browse files
committed
bump
1 parent 245d930 commit 207380f

8 files changed

Lines changed: 84 additions & 82 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
.eslintcache
1515
.next
1616
out
17-
17+
*.tsbuildinfo
1818
# Yarn
1919
.yarn/*
2020
!.yarn/releases

bun.lock

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

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
/// <reference path="./.next/types/routes.d.ts" />
3+
import "./.next/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"devDependencies": {
1616
"@tailwindcss/forms": "^0.5.11",
17-
"@tailwindcss/postcss": "^4.2.0",
17+
"@tailwindcss/postcss": "^4.2.2",
1818
"@types/common-tags": "^1.8.4",
1919
"@types/cookie": "^1.0.0",
2020
"@types/jsonwebtoken": "^9.0.10",
@@ -23,43 +23,43 @@
2323
"@types/react-dom": "^19.2.3",
2424
"@types/react-syntax-highlighter": "^15.5.13",
2525
"@types/uuid": "^10.0.0",
26-
"discord-api-types": "^0.38.39",
26+
"discord-api-types": "^0.38.42",
2727
"eslint": "9.27.0",
2828
"eslint-config-next": "15.1.8",
29-
"postcss": "^8.5.6",
29+
"postcss": "^8.5.8",
3030
"prettier": "^3.8.1",
3131
"prettier-plugin-tailwindcss": "^0.6.14",
3232
"sharp": "^0.34.5",
33-
"tailwindcss": "^4.2.0",
34-
"typescript": "^5.9.3"
33+
"tailwindcss": "^4.2.2",
34+
"typescript": "^6.0.2"
3535
},
3636
"dependencies": {
3737
"@altano/satori-fit-text": "^1.0.2",
3838
"@c-side/next": "^1.0.0",
39-
"@marsidev/react-turnstile": "^1.4.2",
40-
"@next/third-parties": "^15.5.12",
39+
"@marsidev/react-turnstile": "^1.5.0",
40+
"@next/third-parties": "^15.5.14",
4141
"@otters/monzo": "^2.1.2",
4242
"@prequist/lanyard": "^1.1.0",
4343
"@tailwindcss/typography": "^0.5.19",
4444
"@vercel/og": "^0.6.8",
4545
"alistair": "^1.17.0",
46-
"axios": "^1.13.5",
46+
"axios": "^1.14.0",
4747
"bwitch": "^0.3.0",
4848
"clsx": "^2.1.1",
4949
"common-tags": "^1.8.2",
5050
"cookie": "^1.1.1",
51-
"dayjs": "^1.11.19",
51+
"dayjs": "^1.11.20",
5252
"dotenv": "^16.6.1",
5353
"envsafe": "^2.0.3",
54-
"framer-motion": "^12.34.2",
54+
"framer-motion": "^12.38.0",
5555
"jsonwebtoken": "^9.0.3",
5656
"jwa": "^2.0.1",
57-
"next": "^15.5.12",
57+
"next": "^16.2.1",
5858
"nextkit": "^3.4.3",
5959
"react": "^19.2.4",
6060
"react-dom": "^19.2.4",
6161
"react-hot-toast": "^2.6.0",
62-
"react-icons": "^5.5.0",
62+
"react-icons": "^5.6.0",
6363
"react-syntax-highlighter": "^15.6.6",
6464
"satori": "^0.13.2",
6565
"use-lanyard": "^1.7.0",
-1.63 MB
Loading

src/components/message.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ function MessageBubble({
7777
className,
7878

7979
'rounded-[20px]',
80-
// '[mask:paint(squircle)]',
81-
// '[--squircle-radius:12px]',
82-
// '[--squircle-smooth:0.35]',
8380
)}
8481
>
8582
{content}

src/global.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare module '*.css';

tsconfig.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
77
"forceConsistentCasingInFileNames": true,
88
"noEmit": true,
99
"incremental": true,
10-
"esModuleInterop": true,
1110
"module": "ESNext",
1211
"moduleResolution": "bundler",
12+
"allowImportingTsExtensions": true,
1313
"resolveJsonModule": true,
14-
"jsx": "preserve",
14+
"jsx": "react-jsx",
1515
"verbatimModuleSyntax": true,
1616
"plugins": [
1717
{
1818
"name": "next"
1919
}
2020
],
21+
"types": [],
2122
"target": "ESNext",
2223
"useUnknownInCatchVariables": true,
2324
"noImplicitOverride": true,
@@ -27,7 +28,8 @@
2728
"exactOptionalPropertyTypes": true,
2829
"noImplicitReturns": true,
2930
"noUncheckedIndexedAccess": true,
30-
"isolatedModules": true
31+
"isolatedModules": true,
32+
"esModuleInterop": true
3133
},
3234
"include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"],
3335
"exclude": ["node_modules", ".next"]

0 commit comments

Comments
 (0)