refactor: rename daemon to runner throughout codebase

This commit is contained in:
weishu
2026-01-19 11:12:48 +08:00
parent ccdcb3d75d
commit 0228146b99
53 changed files with 812 additions and 714 deletions
+8 -8
View File
@@ -59,9 +59,9 @@ jobs:
exit 1
}
echo "Testing happy daemon status..."
timeout 10s happy daemon status || {
echo "Error: happy daemon status failed or timed out"
echo "Testing happy runner status..."
timeout 10s happy runner status || {
echo "Error: happy runner status failed or timed out"
exit 1
}
@@ -192,15 +192,15 @@ jobs:
exit /b 1
)
rem Test daemon status
echo Testing happy daemon status...
rem Test runner status
echo Testing happy runner status...
if exist "%NPM_PREFIX%\happy.cmd" (
"%NPM_PREFIX%\happy.cmd" daemon status
"%NPM_PREFIX%\happy.cmd" runner status
) else (
happy daemon status
happy runner status
)
if errorlevel 1 (
echo Error: happy daemon status failed
echo Error: happy runner status failed
exit /b 1
)