- Fix unused imports (Trash, Filter, Bell, CategoryAdvanced) - Fix undefined checks for cleanup settings - Fix cleanupPreview undefined checks - Fix useTheme unused parameter - Fix companyLabels type safety - Build erfolgreich durchgefuehrt
18 lines
612 B
Batchfile
18 lines
612 B
Batchfile
@echo off
|
|
REM Git Commit Script für TypeScript Fixes
|
|
|
|
cd /d c:\Users\User\Documents\GitHub\ANDJJJJJJ
|
|
|
|
echo Staging aller Aenderungen...
|
|
git add .
|
|
|
|
echo Erstelle Commit...
|
|
git commit -m "fix: TypeScript errors & build fixes for Control Panel Redesign" -m "- Fix unused imports (Trash, Filter, Bell, CategoryAdvanced)" -m "- Fix undefined checks for cleanup settings" -m "- Fix cleanupPreview undefined checks" -m "- Fix useTheme unused parameter" -m "- Fix companyLabels type safety" -m "- Build erfolgreich durchgefuehrt"
|
|
|
|
echo Pushe Aenderungen...
|
|
git push
|
|
|
|
echo.
|
|
echo Erfolgreich committed und gepusht!
|
|
pause
|