修复AGC启动脚本导入顺序
Project CI / Repository checks (push) Successful in 1m32s
Project CI / Frontend tests (push) Successful in 4m3s
Project CI / Backend tests (push) Successful in 4m13s
Project CI / Native shell tests (push) Successful in 16m47s

按ESLint规则调整开发端口与启动栈模块的导入顺序
This commit is contained in:
2026-08-08 17:30:51 +08:00
parent 5393ef8720
commit 6cb13b3884
@@ -1,6 +1,11 @@
import { resolve } from 'node:path';
import { fileURLToPath } from 'node:url';
import {
readAgcDevEndpoint,
resolveAgcDevEndpoint,
withAgcDevEndpointEnv,
} from './dev-port.mjs';
import {
preflightExistingVite,
spawnChild,
@@ -8,11 +13,6 @@ import {
terminateChildTree,
waitForChildTermination,
} from './start-dev-stack.mjs';
import {
readAgcDevEndpoint,
resolveAgcDevEndpoint,
withAgcDevEndpointEnv,
} from './dev-port.mjs';
const appRoot = fileURLToPath(new URL('..', import.meta.url));
const repoRoot = resolve(appRoot, '../..');