From 76a9fc6e11d802e9c06fde616478e927a55c21fc Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 10:29:49 +0200 Subject: [PATCH 1/8] Revert "chore: build webpack" This reverts commit 4ac2c458dfeedbddabf587631afa8041c35765bc. --- packages/webapp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webapp/package.json b/packages/webapp/package.json index 2e62353b29d..39cb679059e 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -9,7 +9,7 @@ "dev:oss:turbo": "NEXT_PUBLIC_API_URL=http://localhost:5000 NEXT_PUBLIC_DOMAIN=localhost next dev --turbopack -p 5002", "dev:notls": "next dev -p 5002", "dev:notls:turbo": "next dev --turbopack -p 5002", - "build": "next build --webpack", + "build": "next build", "build:turbo": "next build --turbopack", "build:notls": "NODE_TLS_REJECT_UNAUTHORIZED=0 pnpm run build", "start": "next start", From 3fcfe0ed8fd92c9490d5207f2ea303b84a40d8da Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 10:55:36 +0200 Subject: [PATCH 2/8] feat: build script debug --- packages/webapp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webapp/package.json b/packages/webapp/package.json index 39cb679059e..56ab97e7566 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -9,7 +9,7 @@ "dev:oss:turbo": "NEXT_PUBLIC_API_URL=http://localhost:5000 NEXT_PUBLIC_DOMAIN=localhost next dev --turbopack -p 5002", "dev:notls": "next dev -p 5002", "dev:notls:turbo": "next dev --turbopack -p 5002", - "build": "next build", + "build": "timeout --kill-after=30s --signal=SIGINT 10m sh -c 'NEXT_TURBOPACK_TRACING=1 next build --turbopack --debug --experimental-debug-memory-usage --experimental-cpu-prof'; echo \"build exit code: $?\"; find .next -maxdepth 4 -type f \\( -name \"*.cpuprofile\" -o -name \"trace-turbopack\" -o -name \"*.trace\" \\) -print -exec du -h {} \\; 2>/dev/null", "build:turbo": "next build --turbopack", "build:notls": "NODE_TLS_REJECT_UNAUTHORIZED=0 pnpm run build", "start": "next start", From 1b24730a3a616cb443d560261be3558088a99365 Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 13:43:11 +0200 Subject: [PATCH 3/8] fix: dep cycles --- packages/webapp/next.config.ts | 3 +-- packages/webapp/package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/webapp/next.config.ts b/packages/webapp/next.config.ts index c03a5d5fd33..6ed633800a7 100644 --- a/packages/webapp/next.config.ts +++ b/packages/webapp/next.config.ts @@ -1,4 +1,3 @@ -import { withSerwist } from '@serwist/turbopack'; // eslint-disable-next-line import/no-extraneous-dependencies import withBundleAnalyzerInit from '@next/bundle-analyzer'; import { readFileSync } from 'fs'; @@ -351,4 +350,4 @@ const nextConfig: NextConfig = { }), }; -export default withSerwist(nextConfig); +export default nextConfig; diff --git a/packages/webapp/package.json b/packages/webapp/package.json index 56ab97e7566..c3abb87994c 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -9,7 +9,7 @@ "dev:oss:turbo": "NEXT_PUBLIC_API_URL=http://localhost:5000 NEXT_PUBLIC_DOMAIN=localhost next dev --turbopack -p 5002", "dev:notls": "next dev -p 5002", "dev:notls:turbo": "next dev --turbopack -p 5002", - "build": "timeout --kill-after=30s --signal=SIGINT 10m sh -c 'NEXT_TURBOPACK_TRACING=1 next build --turbopack --debug --experimental-debug-memory-usage --experimental-cpu-prof'; echo \"build exit code: $?\"; find .next -maxdepth 4 -type f \\( -name \"*.cpuprofile\" -o -name \"trace-turbopack\" -o -name \"*.trace\" \\) -print -exec du -h {} \\; 2>/dev/null", + "build": "timeout --kill-after=30s --signal=SIGINT 10m next build --turbopack --experimental-debug-memory-usage", "build:turbo": "next build --turbopack", "build:notls": "NODE_TLS_REJECT_UNAUTHORIZED=0 pnpm run build", "start": "next start", From 2f63b4a3f7e576392d7ac57a52d60fbabd26bb7d Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 14:12:52 +0200 Subject: [PATCH 4/8] fix: dep cycles --- packages/webapp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webapp/package.json b/packages/webapp/package.json index c3abb87994c..99b131532d5 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -9,7 +9,7 @@ "dev:oss:turbo": "NEXT_PUBLIC_API_URL=http://localhost:5000 NEXT_PUBLIC_DOMAIN=localhost next dev --turbopack -p 5002", "dev:notls": "next dev -p 5002", "dev:notls:turbo": "next dev --turbopack -p 5002", - "build": "timeout --kill-after=30s --signal=SIGINT 10m next build --turbopack --experimental-debug-memory-usage", + "build": "timeout --kill-after=30s --signal=SIGINT 10m next build --turbopack --experimental-debug-memory-usage --debug-build-paths=\"pages/index.tsx\"", "build:turbo": "next build --turbopack", "build:notls": "NODE_TLS_REJECT_UNAUTHORIZED=0 pnpm run build", "start": "next start", From b026bc534ebd4cea86caa5e4792dded656f34d89 Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 14:20:20 +0200 Subject: [PATCH 5/8] fix: dep cycles --- packages/webapp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webapp/package.json b/packages/webapp/package.json index 99b131532d5..ed6290b62fa 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -9,7 +9,7 @@ "dev:oss:turbo": "NEXT_PUBLIC_API_URL=http://localhost:5000 NEXT_PUBLIC_DOMAIN=localhost next dev --turbopack -p 5002", "dev:notls": "next dev -p 5002", "dev:notls:turbo": "next dev --turbopack -p 5002", - "build": "timeout --kill-after=30s --signal=SIGINT 10m next build --turbopack --experimental-debug-memory-usage --debug-build-paths=\"pages/index.tsx\"", + "build": "timeout --kill-after=30s --signal=SIGINT 10m next build --turbopack --experimental-debug-memory-usage --debug-build-paths=\"pages/index.tsx,pages/posts/[id]/index.tsx,pages/game-center/index.tsx,pages/jobs/[id]/index.tsx\"", "build:turbo": "next build --turbopack", "build:notls": "NODE_TLS_REJECT_UNAUTHORIZED=0 pnpm run build", "start": "next start", From 8382385f0c7e5e8e68e4bb50a3c6351a309af446 Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 14:31:03 +0200 Subject: [PATCH 6/8] fix: dep cycles --- packages/webapp/next.config.ts | 1 + packages/webapp/package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/webapp/next.config.ts b/packages/webapp/next.config.ts index 6ed633800a7..8305ee8705b 100644 --- a/packages/webapp/next.config.ts +++ b/packages/webapp/next.config.ts @@ -58,6 +58,7 @@ const nextConfig: NextConfig = { }, experimental: { turbopackFileSystemCacheForDev: false, + turbopackFileSystemCacheForBuild: true, }, ...withBundleAnalyzer({ compiler: { diff --git a/packages/webapp/package.json b/packages/webapp/package.json index ed6290b62fa..c3abb87994c 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -9,7 +9,7 @@ "dev:oss:turbo": "NEXT_PUBLIC_API_URL=http://localhost:5000 NEXT_PUBLIC_DOMAIN=localhost next dev --turbopack -p 5002", "dev:notls": "next dev -p 5002", "dev:notls:turbo": "next dev --turbopack -p 5002", - "build": "timeout --kill-after=30s --signal=SIGINT 10m next build --turbopack --experimental-debug-memory-usage --debug-build-paths=\"pages/index.tsx,pages/posts/[id]/index.tsx,pages/game-center/index.tsx,pages/jobs/[id]/index.tsx\"", + "build": "timeout --kill-after=30s --signal=SIGINT 10m next build --turbopack --experimental-debug-memory-usage", "build:turbo": "next build --turbopack", "build:notls": "NODE_TLS_REJECT_UNAUTHORIZED=0 pnpm run build", "start": "next start", From e73bdb4af3d30ee397fefbc489d6aee1e80df85c Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 16:28:44 +0200 Subject: [PATCH 7/8] fix: dep cycles --- packages/extension/package.json | 2 +- packages/shared/package.json | 4 +- packages/webapp/package.json | 2 +- pnpm-lock.yaml | 116 +++++++++++++++++--------------- pnpm-workspace.yaml | 3 + 5 files changed, 70 insertions(+), 57 deletions(-) diff --git a/packages/extension/package.json b/packages/extension/package.json index 26297ccd3cb..d051e61193d 100644 --- a/packages/extension/package.json +++ b/packages/extension/package.json @@ -29,7 +29,7 @@ "graphql": "^16.13.2", "graphql-request": "^3.6.1", "idb-keyval": "^5.1.5", - "next": "16.2.6", + "next": "16.3.0-preview.5", "react": "18.3.1", "react-dom": "18.3.1", "react-intersection-observer": "^8.34.0", diff --git a/packages/shared/package.json b/packages/shared/package.json index 0972a29239c..693acbe0c99 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -22,7 +22,7 @@ "graphql": "^15.5.0", "graphql-request": "^3.4.0", "idb-keyval": "^5.0.6", - "next": "16.2.6", + "next": "16.3.0-preview.5", "react": "^18.3.1", "react-dom": "^18.3.1", "react-intersection-observer": "^8.31.0", @@ -80,7 +80,7 @@ "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "jest-junit": "^12.3.0", - "next": "16.2.6", + "next": "16.3.0-preview.5", "nock": "^13.3.1", "postcss": "^8.5.13", "postcss-100vh-fix": "^1.0.2", diff --git a/packages/webapp/package.json b/packages/webapp/package.json index c3abb87994c..c66e1055995 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -44,7 +44,7 @@ "idb-keyval": "^5.1.5", "jotai": "^2.20.0", "lottie-react": "^2.4.1", - "next": "16.2.6", + "next": "16.3.0-preview.5", "next-seo": "^5.4.0", "react": "18.3.1", "react-dom": "18.3.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f5e1cf35fd3..11eace7ed4f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -136,8 +136,8 @@ importers: specifier: ^5.1.5 version: 5.1.5 next: - specifier: 16.2.6 - version: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + specifier: 16.3.0-preview.5 + version: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) react: specifier: 18.3.1 version: 18.3.1 @@ -660,8 +660,8 @@ importers: specifier: ^12.3.0 version: 12.3.0 next: - specifier: 16.2.6 - version: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + specifier: 16.3.0-preview.5 + version: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) nock: specifier: ^13.3.1 version: 13.5.6 @@ -869,7 +869,7 @@ importers: version: 1.6.4 '@serwist/turbopack': specifier: 9.5.7 - version: 9.5.7(esbuild@0.25.12)(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3) + version: 9.5.7(esbuild@0.25.12)(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3) '@tanstack/react-query': specifier: ^5.82.0 version: 5.82.0(react@18.3.1) @@ -913,11 +913,11 @@ importers: specifier: ^2.4.1 version: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next: - specifier: 16.2.6 - version: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + specifier: 16.3.0-preview.5 + version: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) next-seo: specifier: ^5.4.0 - version: 5.15.0(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.15.0(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: 18.3.1 version: 18.3.1 @@ -2915,8 +2915,8 @@ packages: '@next/env@15.5.18': resolution: {integrity: sha512-hAV85Ckd9QR6RvH04MEKwsfLTksvFpO47j9xwtoIuvuPnlwecpSi+uZTtm8HirVbtlI2Fnz//xpcSTjFdyJk+g==} - '@next/env@16.2.6': - resolution: {integrity: sha512-gd8HoHN4ufj73WmR3JmVolrpJR47ILK6LouP5xElPglaVxir6e1a7VzvTvDWkOoPXT9rkkTzyCxBu4yeZfZwcw==} + '@next/env@16.3.0-preview.5': + resolution: {integrity: sha512-XqdVR0utAWMsVc1OIyO48D32vrdmC4/uAgI3Ds088YlOO4vfGKXXVyvkGFkOZkOK0xg7bNYNfJAarX4A0tYqGg==} '@next/swc-darwin-arm64@15.5.18': resolution: {integrity: sha512-w0WvQf1n+txiwns/9pwIQteCJpZTbxzO2SE0FLcwuD4v0WEh1JPOjdyxWL21XwJsdpx8cFRjyzxzCS/siP7HcQ==} @@ -2924,8 +2924,8 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@16.2.6': - resolution: {integrity: sha512-ZJGkkcNfYgrrMkqOdZ7zoLa1TOy0qpcMfk/z4Mh/FKUz40gVO+HNQWqmLxf67Z5WB64DRp0dhEbyHfel+6sJUg==} + '@next/swc-darwin-arm64@16.3.0-preview.5': + resolution: {integrity: sha512-PPWAJGoIkzVpz5hOD9V/qGNdkBuWj3QXhjQU8BQ1FXlMy6xsy4+aD/3UoasKy/HYInW4h1LqdQtDhiQkLYrrMA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -2936,8 +2936,8 @@ packages: cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@16.2.6': - resolution: {integrity: sha512-v/YLBHIY132Ced3puBJ7YJKw1lqsCrgcNo2aRJlCEyQrrCeRJlvGlnmxhPxNQI3KE3N1DN5r9TPNPvka3nq5RQ==} + '@next/swc-darwin-x64@16.3.0-preview.5': + resolution: {integrity: sha512-UPN/RS1H+kr9fgJrbFoH7bs1b9q2/G5cFe+uUf0nP4Hlgfl8NzfTBHEJKTfLAGqi1Qemwuyd29pvRy2vwEjL5g==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -2949,8 +2949,8 @@ packages: os: [linux] libc: [glibc] - '@next/swc-linux-arm64-gnu@16.2.6': - resolution: {integrity: sha512-RPOvqlYBbcQjkz9VQQDZ2T2bARIjXZV1KFlt+V2Mr6SW/e4I9fcKsaA0hdyf2FHoTlsV2xnBd5Y912rP/1Ce6w==} + '@next/swc-linux-arm64-gnu@16.3.0-preview.5': + resolution: {integrity: sha512-kh+bKgk9ZIlmxMkEPnQZXtKc7/AyUyIS9jXgbKt4hWyxXEEZVDmXhiU2bh1zZpthMr/l09wz9z6CvfXtCWUJBA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2963,8 +2963,8 @@ packages: os: [linux] libc: [musl] - '@next/swc-linux-arm64-musl@16.2.6': - resolution: {integrity: sha512-URUTu1+dMkxJsPFgm+OeEvq9wf5sujw0EvgYy80TDGHTSLTnIHeqb0Eu8A3sC95IRgjejQL+kC4mw+4yPxiAXA==} + '@next/swc-linux-arm64-musl@16.3.0-preview.5': + resolution: {integrity: sha512-m09/acXFGhlp+U6m7Wn0AqsmLqars3qI9eBXDpPJm4h/XVS9HPHNzWGy2BI7F1iLoFX59Uy0tcau9ey7JVud3w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2977,8 +2977,8 @@ packages: os: [linux] libc: [glibc] - '@next/swc-linux-x64-gnu@16.2.6': - resolution: {integrity: sha512-DOj182mPV8G3UkrayLoREM5YEYI+Dk5wv7Ox9xl1fFibAELEsFD0lDPfHIeILlutMMfdyhlzYPELG3peuKaurw==} + '@next/swc-linux-x64-gnu@16.3.0-preview.5': + resolution: {integrity: sha512-/EBiqRjLZJWJo6Keq9upJfhrP+tNpePy1beBfOL+tUn68inwNiJEjx+0Lgve99Zur8kSk9TgSmDmwgQxX4iM+g==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -2991,8 +2991,8 @@ packages: os: [linux] libc: [musl] - '@next/swc-linux-x64-musl@16.2.6': - resolution: {integrity: sha512-HKQ5SP/V/ub73UvF7n/zeJlxk2kLmtL7Wzrg4WfmkjmNos5onJ2tKu7yZOPdL18A6Svfn3max29ym+ry7NkK4g==} + '@next/swc-linux-x64-musl@16.3.0-preview.5': + resolution: {integrity: sha512-lUCiPFoecSGkM8aeY6UAgQDiJjR3DhPsI036mznlHFg89ZLoeRdo521N4nmk6EpbPpNzRujgiboBkbuyexDgCg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -3004,8 +3004,8 @@ packages: cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@16.2.6': - resolution: {integrity: sha512-LZXpTlPyS5v7HhSmnvsLGP3iIYgYOBnc8r8ArlT55sGHV89bR2HlDdBjWQ+PY6SJMmk8TuVGFuxalnP3k/0Dwg==} + '@next/swc-win32-arm64-msvc@16.3.0-preview.5': + resolution: {integrity: sha512-Nr4e3dRB86gElIgysL/L7dr9tuRLIq3looK8hLxnYDLUvLza2Tu/7Ik/X6DSRGejIrbZsYjnH3S4xYeAAf7Prw==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -3016,8 +3016,8 @@ packages: cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@16.2.6': - resolution: {integrity: sha512-F0+4i0h9J6C4eE3EAPWsoCk7UW/dbzOjyzxY0qnDUOYFu6FFmdZ6l97/XdV3/Nz3VYyO7UWjyEJUXkGqcoXfMA==} + '@next/swc-win32-x64-msvc@16.3.0-preview.5': + resolution: {integrity: sha512-Svg+VCRUbyNsBuh96hN+1ael8dNXqVQVZqOe9tqFlF4mUzIk5CQFcn5VsZPrz8GNP9HCxJfrfy3PM0cXoSXliw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -8159,8 +8159,8 @@ packages: sass: optional: true - next@16.2.6: - resolution: {integrity: sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==} + next@16.3.0-preview.5: + resolution: {integrity: sha512-I5rVC4VcvAL1FPr6AY5WEQUSe6o1Bt0Oa/qH5hfPhci4FRMCPeAQ95tgxFOgJDk2wME1K009k0bjS17nQ0Bq1w==} engines: {node: '>=20.9.0'} hasBin: true peerDependencies: @@ -8680,6 +8680,10 @@ packages: resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} + postcss@8.5.10: + resolution: {integrity: sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==} + engines: {node: ^10 || ^12 || >=14} + postcss@8.5.13: resolution: {integrity: sha512-qif0+jGGZoLWdHey3UFHHWP0H7Gbmsk8T5VEqyYFbWqPr1XqvLGBbk/sl8V5exGmcYJklJOhOQq1pV9IcsiFag==} engines: {node: ^10 || ^12 || >=14} @@ -12299,54 +12303,54 @@ snapshots: '@next/env@15.5.18': {} - '@next/env@16.2.6': {} + '@next/env@16.3.0-preview.5': {} '@next/swc-darwin-arm64@15.5.18': optional: true - '@next/swc-darwin-arm64@16.2.6': + '@next/swc-darwin-arm64@16.3.0-preview.5': optional: true '@next/swc-darwin-x64@15.5.18': optional: true - '@next/swc-darwin-x64@16.2.6': + '@next/swc-darwin-x64@16.3.0-preview.5': optional: true '@next/swc-linux-arm64-gnu@15.5.18': optional: true - '@next/swc-linux-arm64-gnu@16.2.6': + '@next/swc-linux-arm64-gnu@16.3.0-preview.5': optional: true '@next/swc-linux-arm64-musl@15.5.18': optional: true - '@next/swc-linux-arm64-musl@16.2.6': + '@next/swc-linux-arm64-musl@16.3.0-preview.5': optional: true '@next/swc-linux-x64-gnu@15.5.18': optional: true - '@next/swc-linux-x64-gnu@16.2.6': + '@next/swc-linux-x64-gnu@16.3.0-preview.5': optional: true '@next/swc-linux-x64-musl@15.5.18': optional: true - '@next/swc-linux-x64-musl@16.2.6': + '@next/swc-linux-x64-musl@16.3.0-preview.5': optional: true '@next/swc-win32-arm64-msvc@15.5.18': optional: true - '@next/swc-win32-arm64-msvc@16.2.6': + '@next/swc-win32-arm64-msvc@16.3.0-preview.5': optional: true '@next/swc-win32-x64-msvc@15.5.18': optional: true - '@next/swc-win32-x64-msvc@16.2.6': + '@next/swc-win32-x64-msvc@16.3.0-preview.5': optional: true '@nodelib/fs.scandir@2.1.5': @@ -13023,7 +13027,7 @@ snapshots: transitivePeerDependencies: - browserslist - '@serwist/turbopack@9.5.7(esbuild@0.25.12)(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3)': + '@serwist/turbopack@9.5.7(esbuild@0.25.12)(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3)': dependencies: '@serwist/build': 9.5.7(browserslist@4.28.1)(typescript@5.6.3) '@serwist/utils': 9.5.7(browserslist@4.28.1) @@ -13031,7 +13035,7 @@ snapshots: '@swc/core': 1.15.18 browserslist: 4.28.1 kolorist: 1.8.0 - next: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + next: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) react: 18.3.1 semver: 7.7.4 serwist: 9.5.7(browserslist@4.28.1)(typescript@5.6.3) @@ -14764,7 +14768,7 @@ snapshots: browserslist@4.28.2: dependencies: baseline-browser-mapping: 2.10.27 - caniuse-lite: 1.0.30001791 + caniuse-lite: 1.0.30001792 electron-to-chromium: 1.5.351 node-releases: 2.0.38 update-browserslist-db: 1.2.3(browserslist@4.28.2) @@ -18322,9 +18326,9 @@ snapshots: nested-error-stacks@2.1.1: {} - next-seo@5.15.0(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next-seo@5.15.0(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - next: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + next: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -18353,25 +18357,25 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0): + next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0): dependencies: - '@next/env': 16.2.6 + '@next/env': 16.3.0-preview.5 '@swc/helpers': 0.5.15 baseline-browser-mapping: 2.10.27 caniuse-lite: 1.0.30001792 - postcss: 8.4.31 + postcss: 8.5.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.6(@babel/core@7.26.0)(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 16.2.6 - '@next/swc-darwin-x64': 16.2.6 - '@next/swc-linux-arm64-gnu': 16.2.6 - '@next/swc-linux-arm64-musl': 16.2.6 - '@next/swc-linux-x64-gnu': 16.2.6 - '@next/swc-linux-x64-musl': 16.2.6 - '@next/swc-win32-arm64-msvc': 16.2.6 - '@next/swc-win32-x64-msvc': 16.2.6 + '@next/swc-darwin-arm64': 16.3.0-preview.5 + '@next/swc-darwin-x64': 16.3.0-preview.5 + '@next/swc-linux-arm64-gnu': 16.3.0-preview.5 + '@next/swc-linux-arm64-musl': 16.3.0-preview.5 + '@next/swc-linux-x64-gnu': 16.3.0-preview.5 + '@next/swc-linux-x64-musl': 16.3.0-preview.5 + '@next/swc-win32-arm64-msvc': 16.3.0-preview.5 + '@next/swc-win32-x64-msvc': 16.3.0-preview.5 '@playwright/test': 1.58.2 sass: 1.82.0 sharp: 0.34.5 @@ -18876,6 +18880,12 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 + postcss@8.5.10: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + postcss@8.5.13: dependencies: nanoid: 3.3.11 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 0499862b12b..4fe7124cb80 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -3,6 +3,9 @@ packages: # Delay new package versions for 7 days before pnpm may resolve them. minimumReleaseAge: 10080 +minimumReleaseAgeExclude: + - next + - "@next/*" blockExoticSubdeps: true patchedDependencies: From fa985c60aab19af923d6dca705adc4fa3775b7d2 Mon Sep 17 00:00:00 2001 From: capJavert Date: Wed, 1 Jul 2026 17:13:29 +0200 Subject: [PATCH 8/8] fix: dep cycles --- packages/extension/package.json | 2 +- packages/shared/package.json | 4 +- packages/webapp/next.config.ts | 1 + packages/webapp/package.json | 2 +- pnpm-lock.yaml | 114 +++++++++++++++----------------- pnpm-workspace.yaml | 3 - 6 files changed, 57 insertions(+), 69 deletions(-) diff --git a/packages/extension/package.json b/packages/extension/package.json index d051e61193d..26297ccd3cb 100644 --- a/packages/extension/package.json +++ b/packages/extension/package.json @@ -29,7 +29,7 @@ "graphql": "^16.13.2", "graphql-request": "^3.6.1", "idb-keyval": "^5.1.5", - "next": "16.3.0-preview.5", + "next": "16.2.6", "react": "18.3.1", "react-dom": "18.3.1", "react-intersection-observer": "^8.34.0", diff --git a/packages/shared/package.json b/packages/shared/package.json index 693acbe0c99..0972a29239c 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -22,7 +22,7 @@ "graphql": "^15.5.0", "graphql-request": "^3.4.0", "idb-keyval": "^5.0.6", - "next": "16.3.0-preview.5", + "next": "16.2.6", "react": "^18.3.1", "react-dom": "^18.3.1", "react-intersection-observer": "^8.31.0", @@ -80,7 +80,7 @@ "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "jest-junit": "^12.3.0", - "next": "16.3.0-preview.5", + "next": "16.2.6", "nock": "^13.3.1", "postcss": "^8.5.13", "postcss-100vh-fix": "^1.0.2", diff --git a/packages/webapp/next.config.ts b/packages/webapp/next.config.ts index 8305ee8705b..82a37126168 100644 --- a/packages/webapp/next.config.ts +++ b/packages/webapp/next.config.ts @@ -59,6 +59,7 @@ const nextConfig: NextConfig = { experimental: { turbopackFileSystemCacheForDev: false, turbopackFileSystemCacheForBuild: true, + turbopackMemoryLimit: 4 * 1024 * 1024 * 1024, }, ...withBundleAnalyzer({ compiler: { diff --git a/packages/webapp/package.json b/packages/webapp/package.json index c66e1055995..c3abb87994c 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -44,7 +44,7 @@ "idb-keyval": "^5.1.5", "jotai": "^2.20.0", "lottie-react": "^2.4.1", - "next": "16.3.0-preview.5", + "next": "16.2.6", "next-seo": "^5.4.0", "react": "18.3.1", "react-dom": "18.3.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 11eace7ed4f..566633eb5b6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -136,8 +136,8 @@ importers: specifier: ^5.1.5 version: 5.1.5 next: - specifier: 16.3.0-preview.5 - version: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + specifier: 16.2.6 + version: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) react: specifier: 18.3.1 version: 18.3.1 @@ -660,8 +660,8 @@ importers: specifier: ^12.3.0 version: 12.3.0 next: - specifier: 16.3.0-preview.5 - version: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + specifier: 16.2.6 + version: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) nock: specifier: ^13.3.1 version: 13.5.6 @@ -869,7 +869,7 @@ importers: version: 1.6.4 '@serwist/turbopack': specifier: 9.5.7 - version: 9.5.7(esbuild@0.25.12)(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3) + version: 9.5.7(esbuild@0.25.12)(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3) '@tanstack/react-query': specifier: ^5.82.0 version: 5.82.0(react@18.3.1) @@ -913,11 +913,11 @@ importers: specifier: ^2.4.1 version: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next: - specifier: 16.3.0-preview.5 - version: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + specifier: 16.2.6 + version: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) next-seo: specifier: ^5.4.0 - version: 5.15.0(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.15.0(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: 18.3.1 version: 18.3.1 @@ -2915,8 +2915,8 @@ packages: '@next/env@15.5.18': resolution: {integrity: sha512-hAV85Ckd9QR6RvH04MEKwsfLTksvFpO47j9xwtoIuvuPnlwecpSi+uZTtm8HirVbtlI2Fnz//xpcSTjFdyJk+g==} - '@next/env@16.3.0-preview.5': - resolution: {integrity: sha512-XqdVR0utAWMsVc1OIyO48D32vrdmC4/uAgI3Ds088YlOO4vfGKXXVyvkGFkOZkOK0xg7bNYNfJAarX4A0tYqGg==} + '@next/env@16.2.6': + resolution: {integrity: sha512-gd8HoHN4ufj73WmR3JmVolrpJR47ILK6LouP5xElPglaVxir6e1a7VzvTvDWkOoPXT9rkkTzyCxBu4yeZfZwcw==} '@next/swc-darwin-arm64@15.5.18': resolution: {integrity: sha512-w0WvQf1n+txiwns/9pwIQteCJpZTbxzO2SE0FLcwuD4v0WEh1JPOjdyxWL21XwJsdpx8cFRjyzxzCS/siP7HcQ==} @@ -2924,8 +2924,8 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@16.3.0-preview.5': - resolution: {integrity: sha512-PPWAJGoIkzVpz5hOD9V/qGNdkBuWj3QXhjQU8BQ1FXlMy6xsy4+aD/3UoasKy/HYInW4h1LqdQtDhiQkLYrrMA==} + '@next/swc-darwin-arm64@16.2.6': + resolution: {integrity: sha512-ZJGkkcNfYgrrMkqOdZ7zoLa1TOy0qpcMfk/z4Mh/FKUz40gVO+HNQWqmLxf67Z5WB64DRp0dhEbyHfel+6sJUg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -2936,8 +2936,8 @@ packages: cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@16.3.0-preview.5': - resolution: {integrity: sha512-UPN/RS1H+kr9fgJrbFoH7bs1b9q2/G5cFe+uUf0nP4Hlgfl8NzfTBHEJKTfLAGqi1Qemwuyd29pvRy2vwEjL5g==} + '@next/swc-darwin-x64@16.2.6': + resolution: {integrity: sha512-v/YLBHIY132Ced3puBJ7YJKw1lqsCrgcNo2aRJlCEyQrrCeRJlvGlnmxhPxNQI3KE3N1DN5r9TPNPvka3nq5RQ==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -2949,8 +2949,8 @@ packages: os: [linux] libc: [glibc] - '@next/swc-linux-arm64-gnu@16.3.0-preview.5': - resolution: {integrity: sha512-kh+bKgk9ZIlmxMkEPnQZXtKc7/AyUyIS9jXgbKt4hWyxXEEZVDmXhiU2bh1zZpthMr/l09wz9z6CvfXtCWUJBA==} + '@next/swc-linux-arm64-gnu@16.2.6': + resolution: {integrity: sha512-RPOvqlYBbcQjkz9VQQDZ2T2bARIjXZV1KFlt+V2Mr6SW/e4I9fcKsaA0hdyf2FHoTlsV2xnBd5Y912rP/1Ce6w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2963,8 +2963,8 @@ packages: os: [linux] libc: [musl] - '@next/swc-linux-arm64-musl@16.3.0-preview.5': - resolution: {integrity: sha512-m09/acXFGhlp+U6m7Wn0AqsmLqars3qI9eBXDpPJm4h/XVS9HPHNzWGy2BI7F1iLoFX59Uy0tcau9ey7JVud3w==} + '@next/swc-linux-arm64-musl@16.2.6': + resolution: {integrity: sha512-URUTu1+dMkxJsPFgm+OeEvq9wf5sujw0EvgYy80TDGHTSLTnIHeqb0Eu8A3sC95IRgjejQL+kC4mw+4yPxiAXA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2977,8 +2977,8 @@ packages: os: [linux] libc: [glibc] - '@next/swc-linux-x64-gnu@16.3.0-preview.5': - resolution: {integrity: sha512-/EBiqRjLZJWJo6Keq9upJfhrP+tNpePy1beBfOL+tUn68inwNiJEjx+0Lgve99Zur8kSk9TgSmDmwgQxX4iM+g==} + '@next/swc-linux-x64-gnu@16.2.6': + resolution: {integrity: sha512-DOj182mPV8G3UkrayLoREM5YEYI+Dk5wv7Ox9xl1fFibAELEsFD0lDPfHIeILlutMMfdyhlzYPELG3peuKaurw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -2991,8 +2991,8 @@ packages: os: [linux] libc: [musl] - '@next/swc-linux-x64-musl@16.3.0-preview.5': - resolution: {integrity: sha512-lUCiPFoecSGkM8aeY6UAgQDiJjR3DhPsI036mznlHFg89ZLoeRdo521N4nmk6EpbPpNzRujgiboBkbuyexDgCg==} + '@next/swc-linux-x64-musl@16.2.6': + resolution: {integrity: sha512-HKQ5SP/V/ub73UvF7n/zeJlxk2kLmtL7Wzrg4WfmkjmNos5onJ2tKu7yZOPdL18A6Svfn3max29ym+ry7NkK4g==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -3004,8 +3004,8 @@ packages: cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@16.3.0-preview.5': - resolution: {integrity: sha512-Nr4e3dRB86gElIgysL/L7dr9tuRLIq3looK8hLxnYDLUvLza2Tu/7Ik/X6DSRGejIrbZsYjnH3S4xYeAAf7Prw==} + '@next/swc-win32-arm64-msvc@16.2.6': + resolution: {integrity: sha512-LZXpTlPyS5v7HhSmnvsLGP3iIYgYOBnc8r8ArlT55sGHV89bR2HlDdBjWQ+PY6SJMmk8TuVGFuxalnP3k/0Dwg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -3016,8 +3016,8 @@ packages: cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@16.3.0-preview.5': - resolution: {integrity: sha512-Svg+VCRUbyNsBuh96hN+1ael8dNXqVQVZqOe9tqFlF4mUzIk5CQFcn5VsZPrz8GNP9HCxJfrfy3PM0cXoSXliw==} + '@next/swc-win32-x64-msvc@16.2.6': + resolution: {integrity: sha512-F0+4i0h9J6C4eE3EAPWsoCk7UW/dbzOjyzxY0qnDUOYFu6FFmdZ6l97/XdV3/Nz3VYyO7UWjyEJUXkGqcoXfMA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -8159,8 +8159,8 @@ packages: sass: optional: true - next@16.3.0-preview.5: - resolution: {integrity: sha512-I5rVC4VcvAL1FPr6AY5WEQUSe6o1Bt0Oa/qH5hfPhci4FRMCPeAQ95tgxFOgJDk2wME1K009k0bjS17nQ0Bq1w==} + next@16.2.6: + resolution: {integrity: sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==} engines: {node: '>=20.9.0'} hasBin: true peerDependencies: @@ -8680,10 +8680,6 @@ packages: resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} - postcss@8.5.10: - resolution: {integrity: sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==} - engines: {node: ^10 || ^12 || >=14} - postcss@8.5.13: resolution: {integrity: sha512-qif0+jGGZoLWdHey3UFHHWP0H7Gbmsk8T5VEqyYFbWqPr1XqvLGBbk/sl8V5exGmcYJklJOhOQq1pV9IcsiFag==} engines: {node: ^10 || ^12 || >=14} @@ -12303,54 +12299,54 @@ snapshots: '@next/env@15.5.18': {} - '@next/env@16.3.0-preview.5': {} + '@next/env@16.2.6': {} '@next/swc-darwin-arm64@15.5.18': optional: true - '@next/swc-darwin-arm64@16.3.0-preview.5': + '@next/swc-darwin-arm64@16.2.6': optional: true '@next/swc-darwin-x64@15.5.18': optional: true - '@next/swc-darwin-x64@16.3.0-preview.5': + '@next/swc-darwin-x64@16.2.6': optional: true '@next/swc-linux-arm64-gnu@15.5.18': optional: true - '@next/swc-linux-arm64-gnu@16.3.0-preview.5': + '@next/swc-linux-arm64-gnu@16.2.6': optional: true '@next/swc-linux-arm64-musl@15.5.18': optional: true - '@next/swc-linux-arm64-musl@16.3.0-preview.5': + '@next/swc-linux-arm64-musl@16.2.6': optional: true '@next/swc-linux-x64-gnu@15.5.18': optional: true - '@next/swc-linux-x64-gnu@16.3.0-preview.5': + '@next/swc-linux-x64-gnu@16.2.6': optional: true '@next/swc-linux-x64-musl@15.5.18': optional: true - '@next/swc-linux-x64-musl@16.3.0-preview.5': + '@next/swc-linux-x64-musl@16.2.6': optional: true '@next/swc-win32-arm64-msvc@15.5.18': optional: true - '@next/swc-win32-arm64-msvc@16.3.0-preview.5': + '@next/swc-win32-arm64-msvc@16.2.6': optional: true '@next/swc-win32-x64-msvc@15.5.18': optional: true - '@next/swc-win32-x64-msvc@16.3.0-preview.5': + '@next/swc-win32-x64-msvc@16.2.6': optional: true '@nodelib/fs.scandir@2.1.5': @@ -13027,7 +13023,7 @@ snapshots: transitivePeerDependencies: - browserslist - '@serwist/turbopack@9.5.7(esbuild@0.25.12)(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3)': + '@serwist/turbopack@9.5.7(esbuild@0.25.12)(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react@18.3.1)(typescript@5.6.3)': dependencies: '@serwist/build': 9.5.7(browserslist@4.28.1)(typescript@5.6.3) '@serwist/utils': 9.5.7(browserslist@4.28.1) @@ -13035,7 +13031,7 @@ snapshots: '@swc/core': 1.15.18 browserslist: 4.28.1 kolorist: 1.8.0 - next: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + next: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) react: 18.3.1 semver: 7.7.4 serwist: 9.5.7(browserslist@4.28.1)(typescript@5.6.3) @@ -18326,9 +18322,9 @@ snapshots: nested-error-stacks@2.1.1: {} - next-seo@5.15.0(next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next-seo@5.15.0(next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - next: 16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) + next: 16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -18357,25 +18353,25 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@16.3.0-preview.5(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0): + next@16.2.6(@babel/core@7.26.0)(@playwright/test@1.58.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.82.0): dependencies: - '@next/env': 16.3.0-preview.5 + '@next/env': 16.2.6 '@swc/helpers': 0.5.15 baseline-browser-mapping: 2.10.27 caniuse-lite: 1.0.30001792 - postcss: 8.5.10 + postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.6(@babel/core@7.26.0)(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 16.3.0-preview.5 - '@next/swc-darwin-x64': 16.3.0-preview.5 - '@next/swc-linux-arm64-gnu': 16.3.0-preview.5 - '@next/swc-linux-arm64-musl': 16.3.0-preview.5 - '@next/swc-linux-x64-gnu': 16.3.0-preview.5 - '@next/swc-linux-x64-musl': 16.3.0-preview.5 - '@next/swc-win32-arm64-msvc': 16.3.0-preview.5 - '@next/swc-win32-x64-msvc': 16.3.0-preview.5 + '@next/swc-darwin-arm64': 16.2.6 + '@next/swc-darwin-x64': 16.2.6 + '@next/swc-linux-arm64-gnu': 16.2.6 + '@next/swc-linux-arm64-musl': 16.2.6 + '@next/swc-linux-x64-gnu': 16.2.6 + '@next/swc-linux-x64-musl': 16.2.6 + '@next/swc-win32-arm64-msvc': 16.2.6 + '@next/swc-win32-x64-msvc': 16.2.6 '@playwright/test': 1.58.2 sass: 1.82.0 sharp: 0.34.5 @@ -18880,12 +18876,6 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - postcss@8.5.10: - dependencies: - nanoid: 3.3.11 - picocolors: 1.1.1 - source-map-js: 1.2.1 - postcss@8.5.13: dependencies: nanoid: 3.3.11 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 4fe7124cb80..0499862b12b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -3,9 +3,6 @@ packages: # Delay new package versions for 7 days before pnpm may resolve them. minimumReleaseAge: 10080 -minimumReleaseAgeExclude: - - next - - "@next/*" blockExoticSubdeps: true patchedDependencies: