Skip to content

Commit 0f93d70

Browse files
committed
Update dependencies.
1 parent 0ae8725 commit 0f93d70

File tree

5 files changed

+6156
-3344
lines changed

5 files changed

+6156
-3344
lines changed

nextjs-app/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
"@sanity/image-url": "^1.1.0",
1616
"@sanity/uuid": "^3.0.2",
1717
"@tailwindcss/typography": "^0.5.15",
18-
"@types/node": "^20.14.13",
19-
"@types/react": "^18.3.12",
20-
"@types/react-dom": "^18.3.1",
2118
"@vercel/speed-insights": "^1.1.0",
2219
"autoprefixer": "^10.4.20",
2320
"date-fns": "^3.6.0",
24-
"next": "^15.0.4",
25-
"next-sanity": "^9.8.18",
26-
"postcss": "^8.4.49",
21+
"next": "^15.1.6",
22+
"next-sanity": "^9.8.42",
2723
"react": "^19.0.0",
2824
"react-dom": "^19.0.0",
29-
"sanity": "^3.65.0",
25+
"sanity": "^3.71.2",
3026
"sonner": "^1.7.0",
31-
"styled-components": "^6.1.13",
32-
"tailwindcss": "^3.4.15",
33-
"typescript": "5.6.3"
27+
"styled-components": "^6.1.13"
3428
},
3529
"devDependencies": {
30+
"typescript": "5.6.3",
3631
"eslint": "^8.57.0",
37-
"eslint-config-next": "^15.0.3"
32+
"@types/react-dom": "^18.3.1",
33+
"@types/node": "^20.14.13",
34+
"@types/react": "^18.3.12",
35+
"eslint-config-next": "^15.0.3",
36+
"postcss": "^8.4.49",
37+
"tailwindcss": "^3.4.15"
3838
}
3939
}

nextjs-app/sanity.types.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ export type GetPageQueryResult = {
571571
export type AllPostsQueryResult = Array<{
572572
_id: string;
573573
status: "draft" | "published";
574-
title: string | "Untitled";
574+
title: string;
575575
slug: string;
576576
excerpt: string | null;
577577
coverImage: {
@@ -609,7 +609,7 @@ export type AllPostsQueryResult = Array<{
609609
export type MorePostsQueryResult = Array<{
610610
_id: string;
611611
status: "draft" | "published";
612-
title: string | "Untitled";
612+
title: string;
613613
slug: string;
614614
excerpt: string | null;
615615
coverImage: {
@@ -680,7 +680,7 @@ export type PostQueryResult = {
680680
}> | null;
681681
_id: string;
682682
status: "draft" | "published";
683-
title: string | "Untitled";
683+
title: string;
684684
slug: string;
685685
excerpt: string | null;
686686
coverImage: {

0 commit comments

Comments
 (0)