fix: Update PrimeReact to v10.8.3 to fix missing modules

This commit is contained in:
dahoud
2025-10-13 02:59:06 +00:00
parent f2606f8220
commit 2a2e54c0e3
12 changed files with 1249 additions and 3 deletions

14
cleanup-apps.ps1 Normal file
View File

@@ -0,0 +1,14 @@
# Script pour nettoyer les applications de démonstration
Write-Host "Nettoyage des applications de démonstration..."
$appsPath = "app/(main)/apps"
if (Test-Path $appsPath) {
Write-Host "Suppression du dossier $appsPath..."
Remove-Item -Recurse -Force $appsPath -ErrorAction SilentlyContinue
Write-Host "Dossier supprimé avec succès."
} else {
Write-Host "Le dossier $appsPath n'existe pas."
}
Write-Host "Nettoyage terminé."