Skip to content

Commit d3a0422

Browse files
authored
fix event end date bug (#128)
* fix event end date bug * bug: nextconfig
1 parent 288b326 commit d3a0422

File tree

5 files changed

+3089
-4953
lines changed

5 files changed

+3089
-4953
lines changed

next.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import createNextIntlPlugin from "next-intl/plugin";
44
const withNextIntl = createNextIntlPlugin("./src/config/i18n/request.ts");
55

66
const nextConfig: NextConfig = {
7-
eslint: {
8-
ignoreDuringBuilds: true,
9-
},
7+
// eslint: {
8+
// ignoreDuringBuilds: true,
9+
// },
1010
output: "standalone",
1111
reactStrictMode: true,
1212
productionBrowserSourceMaps: true,

package.json

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -24,55 +24,55 @@
2424
]
2525
},
2626
"dependencies": {
27-
"@next/third-parties": "^16.0.0",
27+
"@next/third-parties": "^16.0.7",
2828
"@radix-ui/react-dialog": "^1.1.15",
2929
"@radix-ui/react-dropdown-menu": "^2.1.16",
30-
"@radix-ui/react-slot": "^1.2.3",
30+
"@radix-ui/react-slot": "^1.2.4",
3131
"class-variance-authority": "^0.7.1",
3232
"clsx": "^2.1.1",
33-
"framer-motion": "^12.23.12",
34-
"lucide-react": "^0.539.0",
35-
"motion": "^12.23.24",
36-
"next": "15.4.7",
37-
"next-intl": "^4.3.4",
33+
"framer-motion": "^12.23.25",
34+
"lucide-react": "^0.555.0",
35+
"motion": "^12.23.25",
36+
"next": "16.0.7",
37+
"next-intl": "^4.5.8",
3838
"next-themes": "^0.4.6",
39-
"react": "19.1.1",
40-
"react-dom": "19.1.1",
39+
"react": "19.2.1",
40+
"react-dom": "19.2.1",
4141
"react-icons": "^5.5.0",
42-
"tailwind-merge": "^3.3.1"
42+
"tailwind-merge": "^3.4.0"
4343
},
4444
"devDependencies": {
45-
"@eslint/eslintrc": "^3.3.1",
46-
"@eslint/js": "^9.33.0",
47-
"@ianvs/prettier-plugin-sort-imports": "^4.6.2",
48-
"@next/eslint-plugin-next": "^15.5.4",
49-
"@playwright/test": "^1.54.2",
50-
"@tailwindcss/postcss": "^4",
45+
"@eslint/eslintrc": "^3.3.3",
46+
"@eslint/js": "^9.39.1",
47+
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
48+
"@next/eslint-plugin-next": "^16.0.7",
49+
"@playwright/test": "^1.57.0",
50+
"@tailwindcss/postcss": "^4.1.17",
5151
"@testing-library/dom": "^10.4.1",
5252
"@testing-library/jest-dom": "^6.9.1",
5353
"@testing-library/react": "^16.3.0",
54-
"@types/node": "^24",
55-
"@types/react": "^19",
56-
"@types/react-dom": "^19",
57-
"@typescript-eslint/eslint-plugin": "^8.45.0",
58-
"@typescript-eslint/parser": "^8.45.0",
59-
"@vitejs/plugin-react": "^5.0.0",
60-
"eslint": "^9.33.0",
61-
"eslint-config-next": "15.4.6",
54+
"@types/node": "^24.10.1",
55+
"@types/react": "^19.2.7",
56+
"@types/react-dom": "^19.2.3",
57+
"@typescript-eslint/eslint-plugin": "^8.48.1",
58+
"@typescript-eslint/parser": "^8.48.1",
59+
"@vitejs/plugin-react": "^5.1.1",
60+
"eslint": "^9.39.1",
61+
"eslint-config-next": "16.0.7",
6262
"eslint-config-prettier": "^10.1.8",
6363
"eslint-plugin-next": "^0.0.0",
6464
"eslint-plugin-prettier": "^5.5.4",
65-
"globals": "^16.4.0",
65+
"globals": "^16.5.0",
6666
"husky": "^9.1.7",
67-
"jsdom": "^26.1.0",
68-
"lint-staged": "^16.1.5",
69-
"prettier": "^3.6.2",
70-
"prettier-plugin-tailwindcss": "^0.6.14",
71-
"tailwindcss": "^4",
72-
"tw-animate-css": "^1.3.6",
73-
"typescript": "^5.9.2",
74-
"typescript-eslint": "^8.39.1",
67+
"jsdom": "^27.2.0",
68+
"lint-staged": "^16.2.7",
69+
"prettier": "^3.7.4",
70+
"prettier-plugin-tailwindcss": "^0.7.2",
71+
"tailwindcss": "^4.1.17",
72+
"tw-animate-css": "^1.4.0",
73+
"typescript": "^5.9.3",
74+
"typescript-eslint": "^8.48.1",
7575
"vite-tsconfig-paths": "^5.1.4",
76-
"vitest": "^3.2.4"
76+
"vitest": "^4.0.15"
7777
}
7878
}

0 commit comments

Comments
 (0)