修复 bump-version 脚本导入排序以通过 lint:eslint
Project CI / Repository checks (pull_request) Successful in 2m54s
Project CI / Frontend tests (pull_request) Successful in 3m14s
Project CI / Backend tests (pull_request) Successful in 6m0s
Project CI / Native shell tests (pull_request) Successful in 20m42s

- bump-version.mjs 按 simple-import-sort 调整 node:child_process / node:path / node:url 导入顺序
This commit is contained in:
2026-09-07 14:59:30 +08:00
parent 65012e89b6
commit 2043f8c966
@@ -1,6 +1,6 @@
import { spawnSync } from 'node:child_process';
import { fileURLToPath } from 'node:url';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
const appRoot = fileURLToPath(new URL('..', import.meta.url));
const repoRoot = path.resolve(appRoot, '../..');