Skip to content

Commit adaea7e

Browse files
committed
chore: deps
2 parents cf314e8 + 6f3733f commit adaea7e

File tree

11 files changed

+2702
-4256
lines changed

11 files changed

+2702
-4256
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77

88
concurrency: ${{ github.workflow }}-${{ github.ref }}
99

10+
permissions:
11+
id-token: write
12+
contents: write
13+
pull-requests: write
14+
1015
jobs:
1116
release:
1217
name: Release
@@ -40,5 +45,3 @@ jobs:
4045
publish: pnpm ci:publish --no-git-checks
4146
env:
4247
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
44-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

apps/docs/eslint.config.mjs

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1-
import { FlatCompat } from '@eslint/eslintrc'
2-
import { dirname } from 'path'
3-
import { fileURLToPath } from 'url'
1+
import { defineConfig, globalIgnores } from 'eslint/config';
2+
import nextVitals from 'eslint-config-next/core-web-vitals';
3+
import nextTs from 'eslint-config-next/typescript';
44

5-
const __filename = fileURLToPath(import.meta.url)
6-
const __dirname = dirname(__filename)
7-
8-
const compat = new FlatCompat({
9-
baseDirectory: __dirname,
10-
})
11-
12-
const eslintConfig = [
13-
...compat.extends('next/core-web-vitals', 'next/typescript'),
5+
const eslintConfig = defineConfig([
6+
...nextVitals,
7+
...nextTs,
8+
// Override default ignores of eslint-config-next.
9+
globalIgnores([
10+
// Default ignores of eslint-config-next:
11+
'.next/**',
12+
'out/**',
13+
'build/**',
14+
'next-env.d.ts',
15+
]),
1416
{
1517
rules: {
1618
'@typescript-eslint/consistent-type-imports': 'error',
1719
'no-console': 'error',
1820
},
19-
ignores: ['.next/*'],
2021
},
21-
]
22+
]);
2223

23-
export default eslintConfig
24+
export default eslintConfig;

apps/docs/next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
import './.next/dev/types/routes.d.ts'
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

apps/docs/package.json

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactqrcode.com",
3-
"version": "1.4.5",
3+
"version": "1.4.6",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --turbopack",
@@ -10,14 +10,14 @@
1010
"lint": "next lint"
1111
},
1212
"dependencies": {
13-
"@hookform/resolvers": "^4.1.3",
13+
"@hookform/resolvers": "^5.2.2",
1414
"@lglab/react-qr-code": "workspace:*",
1515
"@radix-ui/react-accordion": "^1.2.12",
1616
"@radix-ui/react-alert-dialog": "^1.1.15",
1717
"@radix-ui/react-aspect-ratio": "^1.1.8",
1818
"@radix-ui/react-avatar": "^1.1.11",
19-
"@radix-ui/react-collapsible": "^1.1.12",
2019
"@radix-ui/react-checkbox": "^1.3.3",
20+
"@radix-ui/react-collapsible": "^1.1.12",
2121
"@radix-ui/react-context-menu": "^2.2.16",
2222
"@radix-ui/react-dialog": "^1.1.15",
2323
"@radix-ui/react-dropdown-menu": "^2.1.16",
@@ -28,49 +28,48 @@
2828
"@radix-ui/react-popover": "^1.1.15",
2929
"@radix-ui/react-progress": "^1.1.8",
3030
"@radix-ui/react-radio-group": "^1.3.8",
31-
"@radix-ui/react-scroll-area": "^1.2.8",
31+
"@radix-ui/react-scroll-area": "^1.2.10",
3232
"@radix-ui/react-select": "^2.2.6",
3333
"@radix-ui/react-separator": "^1.1.8",
3434
"@radix-ui/react-slider": "^1.3.6",
3535
"@radix-ui/react-slot": "^1.2.4",
3636
"@radix-ui/react-switch": "^1.2.6",
37-
"@radix-ui/react-toggle-group": "^1.1.11",
38-
"@radix-ui/react-toast": "^1.2.15",
3937
"@radix-ui/react-tabs": "^1.1.13",
38+
"@radix-ui/react-toast": "^1.2.15",
4039
"@radix-ui/react-toggle": "^1.1.10",
41-
"@radix-ui/react-tooltip": "^1.2.5",
42-
"@uiw/react-color": "^2.5.0",
40+
"@radix-ui/react-toggle-group": "^1.1.11",
41+
"@radix-ui/react-tooltip": "^1.2.8",
42+
"@uiw/react-color": "^2.9.2",
4343
"@vercel/analytics": "^1.5.0",
4444
"class-variance-authority": "^0.7.1",
4545
"clsx": "^2.1.1",
4646
"cmdk": "1.1.1",
4747
"date-fns": "^4.1.0",
4848
"embla-carousel-react": "^8.6.0",
49+
"eslint-config-next": "16.0.1",
4950
"input-otp": "^1.4.2",
50-
"lucide-react": "^0.507.0",
51-
"next": "15.4.7",
51+
"lucide-react": "^0.553.0",
52+
"next": "16.0.1",
5253
"next-themes": "^0.4.6",
5354
"prism-react-renderer": "^2.4.1",
54-
"react": "^19.1.0",
55-
"react-dom": "^19.1.0",
56-
"react-hook-form": "^7.56.0",
55+
"react": "^19.2.0",
56+
"react-dom": "^19.2.0",
57+
"react-hook-form": "^7.66.0",
5758
"react-icons": "^5.5.0",
58-
"react-resizable-panels": "^2.1.7",
59-
"recharts": "^2.15.3",
60-
"sonner": "^2.0.3",
61-
"tailwind-merge": "^3.2.0",
59+
"react-resizable-panels": "^3.0.6",
60+
"sonner": "^2.0.7",
61+
"tailwind-merge": "^3.3.1",
6262
"tailwindcss-animate": "^1.0.7",
63-
"vaul": "^1.1.2",
64-
"zod": "^3.24.3"
63+
"vaul": "^1.1.2"
6564
},
6665
"devDependencies": {
67-
"@tailwindcss/postcss": "^4.1.4",
68-
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
69-
"@types/node": "^22.14.1",
70-
"@types/react": "^19.1.2",
71-
"@types/react-dom": "^19.1.2",
72-
"postcss": "^8.5.3",
73-
"tailwindcss": "^4.1.4",
74-
"typescript": "^5.8.3"
66+
"@tailwindcss/postcss": "^4.1.17",
67+
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
68+
"@types/node": "^24.10.0",
69+
"@types/react": "^19.2.2",
70+
"@types/react-dom": "^19.2.2",
71+
"postcss": "^8.5.6",
72+
"tailwindcss": "^4.1.17",
73+
"typescript": "^5.9.3"
7574
}
7675
}

0 commit comments

Comments
 (0)