From 2043f8c966a7ce09844cccde69b8bc1c4cacdb2f Mon Sep 17 00:00:00 2001 From: Suzumiya Date: Mon, 7 Sep 2026 14:59:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20bump-version=20=E8=84=9A?= =?UTF-8?q?=E6=9C=AC=E5=AF=BC=E5=85=A5=E6=8E=92=E5=BA=8F=E4=BB=A5=E9=80=9A?= =?UTF-8?q?=E8=BF=87=20lint:eslint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - bump-version.mjs 按 simple-import-sort 调整 node:child_process / node:path / node:url 导入顺序 --- apps/ai-game-creator-shell/scripts/bump-version.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ai-game-creator-shell/scripts/bump-version.mjs b/apps/ai-game-creator-shell/scripts/bump-version.mjs index 9e4a9eb9a..a5cb61483 100644 --- a/apps/ai-game-creator-shell/scripts/bump-version.mjs +++ b/apps/ai-game-creator-shell/scripts/bump-version.mjs @@ -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, '../..');