Enhance deploy-production.sh with new functions for Node.js version management and public document synchronization. Added checks for Node.js version requirements and improved error handling for document syncing. Updated package.json and package-lock.json to specify Node.js and npm engine requirements.
All checks were successful
Code Analysis and Production Deploy / analyze (push) Successful in 2m45s
Code Analysis and Production Deploy / deploy-production (push) Successful in 1m57s

This commit is contained in:
Torsten Schulz (local)
2026-04-15 21:51:08 +02:00
parent 337c172d07
commit 986b2056cd
4 changed files with 78 additions and 2 deletions

View File

@@ -4,6 +4,10 @@
"description": "Moderne Webseite für den Harheimer Tischtennis Club",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0",
"npm": ">=10"
},
"scripts": {
"dev": "nuxt dev --port 3100",
"build": "nuxt build",