fix: eject.tsの未使用import(basename)を削除

This commit is contained in:
nrslib 2026-01-30 21:33:47 +09:00
parent 8975fc974c
commit 547b4260f7

View File

@ -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';