Files
youlegames/codes/games/sql/export/export_summary.bat

22 lines
328 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
chcp 65001 >nul
cd /d "%~dp0"
where node >nul 2>&1
if %errorlevel% neq 0 (
echo [错误] 未找到 Node.js请先安装 Node.js
pause
exit /b 1
)
if not exist "node_modules" (
echo [初始化] 首次运行,正在安装依赖...
npm install
echo.
)
node export_summary.js %*
echo.
pause