chore: update Node.js and pnpm versions in Dockerfiles and package.json

- Updated base image in Dockerfile.docs and Dockerfile.website to Node.js 24.4-alpine.
- Updated package manager version in package.json to pnpm 10.22.0.
- Adjusted Node.js engine requirement in package.json to ^24.4.0.
- Added new script to fix API path references in MDX files for documentation.
- Updated build command in apps/docs/package.json to include the new script.
This commit is contained in:
Mauricio Siu
2026-02-27 02:52:18 -06:00
parent 5d103d6d63
commit a85fb76a95
6 changed files with 45 additions and 18 deletions

View File

@@ -10,7 +10,7 @@
"postinstall": "fumadocs-mdx",
"fix-openapi": "node scripts/fix-openapi.mjs",
"generate-templates": "node scripts/generate-templates.mjs",
"build:docs": "npm run fix-openapi && npm run generate-templates && node generate-docs.mjs"
"build:docs": "npm run fix-openapi && npm run generate-templates && node generate-docs.mjs && node scripts/fix-api-paths.mjs"
},
"dependencies": {
"@next/third-parties": "16.0.7",