Skip to content

Commit 6231cba

Browse files
committed
update deps
1 parent 78d5003 commit 6231cba

File tree

3 files changed

+117
-118
lines changed

3 files changed

+117
-118
lines changed

next.config.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,8 @@ const config: NextConfig = {
55
reactStrictMode: true,
66
// Speeds up performance by automatically generating useMemo and useCallback in client components
77
reactCompiler: true,
8-
experimental: {
9-
// Required by `next-sanity/experimental/live`
10-
cacheComponents: true,
11-
cacheLife: {
12-
default: {
13-
// Sanity Live handles on-demand revalidation, so the default 15min time based revalidation is too short
14-
revalidate: 60 * 60 * 24 * 90, // 90 days
15-
},
16-
},
17-
},
8+
// Required by `next-sanity/experimental/live`
9+
cacheComponents: true,
1810
images: {
1911
remotePatterns: [{hostname: 'cdn.sanity.io'}],
2012
},

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"type": "module",
55
"scripts": {
6-
"build": "next build --turbopack --no-mangling && sanity manifest extract --path public/studio/static",
6+
"build": "next build --turbopack && sanity manifest extract --path public/studio/static",
77
"predev": "npm run typegen",
88
"dev": "next --turbopack",
99
"format": "npx prettier --write . --ignore-path .gitignore",
@@ -12,10 +12,10 @@
1212
"start": "next start",
1313
"type-check": "tsc --noEmit",
1414
"typegen": "sanity schema extract && sanity typegen generate",
15-
"update:canaries": "pnpm up next@canary eslint-config-next@canary @next/env@canary next-sanity@latest"
15+
"update:canaries": "pnpm up next@latest eslint-config-next@latest @next/env@latest next-sanity@canary"
1616
},
1717
"dependencies": {
18-
"@next/env": "16.0.0-canary.10",
18+
"@next/env": "16.0.0",
1919
"@sanity/client": "7.12.0",
2020
"@sanity/demo": "2.0.0",
2121
"@sanity/icons": "3.7.4",
@@ -27,8 +27,8 @@
2727
"@vercel/speed-insights": "1.2.0",
2828
"classnames": "2.5.1",
2929
"date-fns": "4.1.0",
30-
"next": "16.0.0-canary.10",
31-
"next-sanity": "11.5.5",
30+
"next": "16.0.0",
31+
"next-sanity": "11.5.7-canary.0",
3232
"react": "19.2.0",
3333
"react-dom": "19.2.0",
3434
"react-live-transitions": "0.2.0",
@@ -46,14 +46,14 @@
4646
"@types/react": "19.2.2",
4747
"autoprefixer": "10.4.21",
4848
"babel-plugin-react-compiler": "1.0.0",
49-
"eslint": "9.37.0",
49+
"eslint": "9.38.0",
5050
"eslint-formatter-gha": "1.6.0",
5151
"eslint-plugin-react-hooks": "7.0.0",
5252
"postcss": "8.5.6",
5353
"prettier": "3.6.2",
54-
"prettier-plugin-tailwindcss": "0.6.14",
54+
"prettier-plugin-tailwindcss": "0.7.1",
5555
"tailwindcss": "3.4.18",
5656
"typescript": "5.9.3"
5757
},
58-
"packageManager": "pnpm@10.17.1"
58+
"packageManager": "pnpm@10.18.3"
5959
}

0 commit comments

Comments
 (0)