From 547b4260f7598775bc4ad1817e0485cf5dce7c01 Mon Sep 17 00:00:00 2001 From: nrslib <38722970+nrslib@users.noreply.github.com> Date: Fri, 30 Jan 2026 21:33:47 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20eject.ts=E3=81=AE=E6=9C=AA=E4=BD=BF?= =?UTF-8?q?=E7=94=A8import(basename)=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/eject.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/eject.ts b/src/commands/eject.ts index c28135a..74caff9 100644 --- a/src/commands/eject.ts +++ b/src/commands/eject.ts @@ -6,7 +6,7 @@ */ import { existsSync, readdirSync, statSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs'; -import { join, basename, dirname } from 'node:path'; +import { join, dirname } from 'node:path'; import { getGlobalWorkflowsDir, getGlobalAgentsDir, getBuiltinWorkflowsDir, getBuiltinAgentsDir } from '../config/paths.js'; import { getLanguage } from '../config/globalConfig.js'; import { header, success, info, warn, error } from '../utils/ui.js';