import { fileURLToPath } from 'url' import * as path from 'path' /** * Resolve the dist root directory from the current module's location. * * Works across all build layouts: * - Single-file: dist/cli.js → dist/ * - Code-split: dist/chunks/chunk-xxx.js → dist/ * - Dev mode: src/utils/distRoot.ts → / */ const __filename = fileURLToPath(import.meta.url) const __dirname = path.dirname(__filename) const distRoot = (() => { const parts = __dirname.split(path.sep) const distIdx = parts.lastIndexOf('dist') if (distIdx !== -1) { return parts.slice(0, distIdx + 1).join(path.sep) } // Dev mode: from src/utils/ → project root const srcIdx = parts.lastIndexOf('src') if (srcIdx !== -1) { return parts.slice(0, srcIdx).join(path.sep) } return __dirname })() export { distRoot }