chore: configure eslint and update gitignore
This commit is contained in:
16
stop.bat
16
stop.bat
@@ -1,24 +1,24 @@
|
||||
@echo off
|
||||
echo 正在关闭 2FA Account Tool...
|
||||
echo Closing 2FA Account Tool...
|
||||
echo.
|
||||
|
||||
:: 终止所有 electron 相关进程
|
||||
:: Kill all electron processes
|
||||
taskkill /f /im electron.exe >nul 2>&1
|
||||
if %errorlevel% equ 0 (
|
||||
echo [已关闭] electron.exe
|
||||
echo [CLOSED] electron.exe
|
||||
) else (
|
||||
echo [未运行] electron.exe
|
||||
echo [NOT RUNNING] electron.exe
|
||||
)
|
||||
|
||||
:: 可能有残留的 node 进程
|
||||
:: Kill any remaining node processes
|
||||
taskkill /f /im node.exe >nul 2>&1
|
||||
if %errorlevel% equ 0 (
|
||||
echo [已关闭] node.exe
|
||||
echo [CLOSED] node.exe
|
||||
) else (
|
||||
echo [未运行] node.exe
|
||||
echo [NOT RUNNING] node.exe
|
||||
)
|
||||
|
||||
echo.
|
||||
echo 程序已彻底关闭,现在可以安全删除 node_modules 文件夹了。
|
||||
echo Program has been closed. You can now safely delete node_modules folder.
|
||||
echo.
|
||||
pause
|
||||
|
||||
Reference in New Issue
Block a user