mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 16:14:12 +00:00
- Remove unused variables and imports across API routes and workers - Fix TypeScript errors in ConsentLogs.ts (PayloadRequest header access) - Fix TypeScript errors in formSubmissionHooks.ts (add ResponseTracking interface) - Update eslint ignores for coverage, test results, and generated files - Set push: false in payload.config.ts (schema changes only via migrations) - Update dependencies to latest versions (Payload 3.68.4, React 19.2.3) - Add framework update check script and documentation - Regenerate payload-types.ts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
683 B
Bash
Executable file
25 lines
683 B
Bash
Executable file
#!/usr/bin/env bash
|
||
|
||
set -euo pipefail
|
||
|
||
if ! command -v pnpm >/dev/null 2>&1; then
|
||
echo "pnpm is required to run this check." >&2
|
||
exit 1
|
||
fi
|
||
|
||
echo "🔍 Checking Payload + Next.js versions (peer compatibility)…"
|
||
pnpm outdated next \
|
||
payload \
|
||
@payloadcms/next \
|
||
@payloadcms/db-postgres \
|
||
@payloadcms/plugin-form-builder \
|
||
@payloadcms/plugin-multi-tenant \
|
||
@payloadcms/plugin-nested-docs \
|
||
@payloadcms/plugin-redirects \
|
||
@payloadcms/plugin-seo \
|
||
@payloadcms/richtext-lexical \
|
||
@payloadcms/ui
|
||
|
||
echo
|
||
echo "ℹ️ Review Payload release notes: https://github.com/payloadcms/payload/releases"
|
||
echo "ℹ️ Review Next.js release notes: https://nextjs.org/blog"
|