31 lines
668 B
Batchfile
31 lines
668 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
echo ========================================
|
|
echo 重新编译前端 - 游客模式修复
|
|
echo ========================================
|
|
echo.
|
|
|
|
cd /d "%~dp0..\peidu\uniapp"
|
|
|
|
echo [1/2] 清除编译缓存...
|
|
if exist unpackage (
|
|
rmdir /s /q unpackage
|
|
echo 已清理 unpackage 目录
|
|
)
|
|
if exist node_modules\.cache (
|
|
rmdir /s /q node_modules\.cache
|
|
echo 已清理 node_modules\.cache 目录
|
|
)
|
|
echo.
|
|
|
|
echo [2/2] 重新编译小程序...
|
|
echo 正在编译,请稍候...
|
|
call npm run dev:mp-weixin
|
|
|
|
echo.
|
|
echo ========================================
|
|
echo 编译完成!
|
|
echo ========================================
|
|
echo.
|
|
pause
|