guoyu/Test/备份/_已清理文件备份_周六 22512/bat/重新编译.bat

23 lines
331 B
Batchfile
Raw Normal View History

@echo off
echo 正在清理缓存并重新编译...
echo.
cd /d "%~dp0"
echo [1/3] 清理缓存...
rd /s /q unpackage 2>nul
rd /s /q .hbuilderx 2>nul
rd /s /q node_modules/.cache 2>nul
echo.
echo [2/3] 重新安装依赖...
call npm install
echo.
echo [3/3] 重新编译...
call npm run dev:app
echo.
echo ✅ 完成!
pause