import { basename } from 'node:path'; import process from 'node:process'; import { isAbsolute, relative, resolve } from 'pathe'; import { camelCase, kebabCase } from 'scule'; import MagicString from 'magic-string'; import { findStaticImports, parseStaticImport, resolvePathSync } from 'mlly'; import { stripLiteral } from 'strip-literal'; const RE_EXCLUDE = [ // imported/exported from other module /\b(import|export)\b([\w$*{},\s]+?)\bfrom\s*["']/g, // defined as function /\bfunction\s*([\w$]+)\s*\(/g, // defined as class /\bclass\s*([\w$]+)\s*\{/g, // defined as local variable (including for-of/for-in loop declarations) // eslint-disable-next-line regexp/no-super-linear-backtracking /\b(?:const|let|var)\s+?(\[.*?\]|\{.*?\}|.+?)\s*?(?:[=;\n]|\bof\b|\bin\b)/gs ]; const RE_IMPORT_AS = /^.*\sas\s+/; const RE_SEPARATOR = /[,[\]{}\n]|\b(?:import|export)\b/g; const RE_MATCH = /(^|\.\.\.|(?:\bcase|\?)\s+|[^\w$/)]|\bextends\s+)([\w$]+)\s*(?=[.()[\]}:;?+\-*&|`<>,\n]|\b(?:instanceof|in)\b|$|(?<=extends\s+\w+)\s+\{)/g; const RE_REGEX = /\/\S*?(? { const entries = []; const imports2 = Array.from(importSet).filter((i) => { if (!i.name || i.as === "") { let importStr; if (isCJS) { importStr = `require('${name}');`; } else { importStr = `import '${name}'`; if (i.with) importStr += ` with ${stringifyWith(i.with)}`; importStr += ";"; } entries.push(importStr); return false; } else if (i.name === "default" || i.name === "=") { let importStr; if (isCJS) { importStr = i.name === "=" ? `const ${i.as} = require('${name}');` : `const { default: ${i.as} } = require('${name}');`; } else { importStr = `import ${i.as} from '${name}'`; if (i.with) importStr += ` with ${stringifyWith(i.with)}`; importStr += ";"; } entries.push(importStr); return false; } else if (i.name === "*") { let importStr; if (isCJS) { importStr = `const ${i.as} = require('${name}');`; } else { importStr = `import * as ${i.as} from '${name}'`; if (i.with) importStr += ` with ${stringifyWith(i.with)}`; importStr += ";"; } entries.push(importStr); return false; } else if (!isCJS && i.with) { entries.push(`import { ${stringifyImportAlias(i)} } from '${name}' with ${stringifyWith(i.with)};`); return false; } return true; }); if (imports2.length) { const importsAs = imports2.map((i) => stringifyImportAlias(i, isCJS)); entries.push( isCJS ? `const { ${importsAs.join(", ")} } = require('${name}');` : `import { ${importsAs.join(", ")} } from '${name}';` ); } return entries; }).join("\n"); } function encodeImportName(name) { return `\uFFFF${name}\uFFFE`; } function dedupeImports(imports, warn) { const deduped = /* @__PURE__ */ new Map(); for (let idx = imports.length - 1; idx >= 0; idx--) { const currImp = imports[idx]; if (currImp.disabled || currImp.declarationType === "enum" || currImp.declarationType === "const enum" || currImp.declarationType === "class") { deduped.set(idx, currImp); continue; } const name = String(currImp.as ?? currImp.name); const prevImp = deduped.get(name); if (!prevImp) { deduped.set(name, currImp); continue; } const isSameSpecifier = currImp.type || prevImp.type ? (currImp.typeFrom || currImp.from) === (prevImp.typeFrom || prevImp.from) : currImp.from === prevImp.from; if (isSameSpecifier) { if (Boolean(currImp.type) === Boolean(prevImp.type)) { if ((currImp.priority ?? 1) > (prevImp.priority ?? 1)) { deduped.delete(name); deduped.set(name, currImp); } } else { const altName2 = encodeImportName(name); const prevImpComplement2 = deduped.get(altName2); if (!prevImpComplement2) { deduped.set(altName2, currImp); } else if ((currImp.priority ?? 1) > (prevImpComplement2.priority ?? 1)) { deduped.delete(altName2); deduped.set(altName2, currImp); } } continue; } const altName = encodeImportName(name); const prevImpComplement = deduped.get(altName); const prevPriority = prevImpComplement ? Math.max(prevImp.priority ?? 1, prevImpComplement.priority ?? 1) : prevImp.priority ?? 1; const priorityDiff = (currImp.priority ?? 1) - prevPriority; if (priorityDiff > 0) { deduped.delete(name); deduped.delete(altName); deduped.set(name, currImp); } else if (priorityDiff === 0) { warn(`Duplicated imports "${name}", the one from "${currImp.from}" has been ignored and "${prevImp.from}" is used`); } } let i = deduped.size; const dedupedImports = new Array(i); for (const imp of deduped.values()) { dedupedImports[--i] = imp; } return dedupedImports; } function toExports(imports, fileDir, includeType = false, options = {}) { const map = toImportModuleMap(imports, includeType, options); return Object.entries(map).flatMap(([name, imports2]) => { if (isFilePath(name)) name = name.replace(RE_FILE_EXT, ""); if (fileDir && isAbsolute(name)) { name = relative(fileDir, name); if (!RE_RELATIVE_PATH.test(name)) name = `./${name}`; } const entries = []; const filtered = Array.from(imports2).filter((i) => { if (i.name === "*") { entries.push(`export * as ${i.as} from '${name}';`); return false; } return true; }); const byAlias = /* @__PURE__ */ new Map(); for (const i of filtered) { const key = String(i.as ?? i.name); const existing = byAlias.get(key); if (!existing || existing.type && !i.type) byAlias.set(key, i); } const deduped = Array.from(byAlias.values()); if (deduped.length) entries.push(`export { ${deduped.map((i) => stringifyImportAlias(i, false)).join(", ")} } from '${name}';`); return entries; }).join("\n"); } function stripFileExtension(path) { return path.replace(RE_FILE_EXT, ""); } function toTypeDeclarationItems(imports, options) { return imports.map((i) => { const from = options?.resolvePath?.(i) || stripFileExtension(i.typeFrom || i.from); let typeDef = ""; if (i.with) typeDef += `import('${from}', { with: ${stringifyWith(i.with)} })`; else typeDef += `import('${from}')`; if (i.name !== "*" && i.name !== "=") typeDef += RE_IDENTIFIER.test(i.name) ? `.${i.name}` : `['${i.name}']`; return `const ${i.as}: typeof ${typeDef}`; }).sort(); } function toTypeDeclarationFile(imports, options) { const items = toTypeDeclarationItems(imports, options); const { exportHelper = true } = options || {}; let declaration = ""; if (exportHelper) declaration += "export {}\n"; declaration += `declare global { ${items.map((i) => ` ${i}`).join("\n")} }`; return declaration; } function makeTypeModulesMap(imports, resolvePath) { const modulesMap = /* @__PURE__ */ new Map(); const resolveImportFrom = typeof resolvePath === "function" ? (i) => { return resolvePath(i) || stripFileExtension(i.typeFrom || i.from); } : (i) => stripFileExtension(i.typeFrom || i.from); for (const import_ of imports) { const from = resolveImportFrom(import_); let module = modulesMap.get(from); if (!module) { module = { typeImports: /* @__PURE__ */ new Set(), starTypeImport: void 0 }; modulesMap.set(from, module); } if (import_.name === "*") { if (import_.as) module.starTypeImport = import_; } else { module.typeImports.add(import_); } } return modulesMap; } function toTypeReExports(imports, options) { const importsMap = makeTypeModulesMap(imports, options?.resolvePath); const code = Array.from(importsMap).flatMap(([from, module]) => { from = from.replace(RE_DTS_EXT, ".$1js"); const { starTypeImport, typeImports } = module; const strings = []; if (typeImports.size) { const typeImportNames = Array.from(typeImports).map(({ name, as }) => { if (as && as !== name) return `${name} as ${as}`; return name; }); strings.push( "// @ts-ignore", `export type { ${typeImportNames.join(", ")} } from '${from}'` ); } if (starTypeImport) { strings.push( "// @ts-ignore", `export type * as ${starTypeImport.as} from '${from}'` ); } if (strings.length) { strings.push( // This is a workaround for a TypeScript issue where type-only re-exports are not properly initialized. `import('${from}')` ); } return strings; }); return `// for type re-export declare global { ${code.map((i) => ` ${i}`).join("\n")} }`; } function stringifyImportAlias(item, isCJS = false) { return item.as === void 0 || item.name === item.as ? item.name : isCJS ? `${item.name}: ${item.as}` : `${item.name} as ${item.as}`; } function toImportModuleMap(imports, includeType = false, options = {}) { const map = {}; for (const _import of imports) { if (_import.type && !includeType) continue; const from = options.declaration && _import.typeFrom || _import.from; if (!map[from]) map[from] = /* @__PURE__ */ new Set(); map[from].add(_import); } return map; } function getString(code) { if (typeof code === "string") return code; return code.toString(); } function getMagicString(code) { if (typeof code === "string") return new MagicString(code); return code; } function addImportToCode(code, imports, isCJS = false, mergeExisting = false, injectAtLast = false, firstOccurrence = Number.POSITIVE_INFINITY, onResolved, onStringified) { let newImports = []; const s = getMagicString(code); let _staticImports; const strippedCode = stripCommentsAndStrings(s.original); function findStaticImportsLazy() { if (!_staticImports) { _staticImports = findStaticImports(s.original).filter((i) => Boolean(strippedCode.slice(i.start, i.end).trim())).map((i) => parseStaticImport(i)); } return _staticImports; } function hasShebang() { return RE_SHEBANG.test(s.original); } if (mergeExisting && !isCJS) { const existingImports = findStaticImportsLazy(); const map = /* @__PURE__ */ new Map(); imports.forEach((i) => { const target = existingImports.find((e) => e.specifier === i.from && e.imports.startsWith("{")); if (!target) return newImports.push(i); if (!map.has(target)) map.set(target, []); map.get(target).push(i); }); for (const [target, items] of map.entries()) { const strings = items.map((i) => `${stringifyImportAlias(i)}, `); const importLength = target.code.match(RE_IMPORT_BRACE)?.[0]?.length; if (importLength) s.appendLeft(target.start + importLength, ` ${strings.join("").trim()}`); } } else { newImports = imports; } newImports = onResolved?.(newImports) ?? newImports; let newEntries = stringifyImports(newImports, isCJS); newEntries = onStringified?.(newEntries, newImports) ?? newEntries; if (newEntries) { const insertionIndex = injectAtLast ? findStaticImportsLazy().reverse().find((i) => i.end <= firstOccurrence)?.end ?? 0 : 0; if (insertionIndex > 0) s.appendRight(insertionIndex, ` ${newEntries} `); else if (hasShebang()) s.appendLeft(s.original.indexOf("\n") + 1, ` ${newEntries} `); else s.prepend(`${newEntries} `); } return { s, get code() { return s.toString(); } }; } function normalizeImports(imports) { for (const _import of imports) _import.as = _import.as ?? _import.name; return imports; } function resolveIdAbsolute(id, parentId) { return resolvePathSync(id, { url: parentId }); } function isFilePath(path) { return path.startsWith(".") || isAbsolute(path) || path.includes("://"); } const toImports = stringifyImports; const RE_CONTEXT$1 = /\b_ctx\.([$\w]+)\b/g; const UNREF_KEY = "__unimport_unref_"; const VUE_TEMPLATE_NAME = "unimport:vue-template"; function vueTemplateAddon() { const self = { name: VUE_TEMPLATE_NAME, async transform(s, id) { if (!s.original.includes("_ctx.") || s.original.includes(UNREF_KEY)) return s; const matches = Array.from(s.original.matchAll(RE_CONTEXT$1)); const imports = await this.getImports(); let targets = []; for (const match of matches) { const name = match[1]; const item = imports.find((i) => i.as === name); if (!item) continue; const start = match.index; const end = start + match[0].length; const tempName = `__unimport_${name}`; s.overwrite(start, end, `(${JSON.stringify(name)} in _ctx ? _ctx.${name} : ${UNREF_KEY}(${tempName}))`); if (!targets.some((i) => i.as === tempName)) { targets.push({ ...item, as: tempName }); } } if (targets.length) { targets.push({ name: "unref", from: "vue", as: UNREF_KEY }); for (const addon of this.addons) { if (addon === self) continue; targets = await addon.injectImportsResolved?.call(this, targets, s, id) ?? targets; } let injection = stringifyImports(targets); for (const addon of this.addons) { if (addon === self) continue; injection = await addon.injectImportsStringified?.call(this, injection, targets, s, id) ?? injection; } s.prepend(injection); } return s; }, async declaration(dts, options) { const imports = await this.getImports(); const items = imports.map((i) => { if (i.type || i.dtsDisabled) return ""; const from = options?.resolvePath?.(i) || i.from; return `readonly ${i.as}: UnwrapRef`; }).filter(Boolean).sort(); const extendItems = items.map((i) => ` ${i}`).join("\n"); return `${dts} // for vue template auto import import { UnwrapRef } from 'vue' declare module 'vue' { interface ComponentCustomProperties { ${extendItems} } }`; } }; return self; } const RE_BACKSLASH = /\\/g; const RE_CONTEXT = /resolveDirective as _resolveDirective/; const contextText = `${RE_CONTEXT.source}, `; const RE_DIRECTIVE = /(?:var|const) (\w+) = _resolveDirective\("([\w.-]+)"\);?\s*/g; const VUE_DIRECTIVES_NAME = "unimport:vue-directives"; function vueDirectivesAddon(options = {}) { function isDirective(importEntry) { let isDirective2 = importEntry.meta?.vueDirective === true; if (isDirective2) { return true; } isDirective2 = options.isDirective?.(normalizePath(process.cwd(), importEntry.from), importEntry) ?? false; if (isDirective2) { importEntry.meta ??= {}; importEntry.meta.vueDirective = true; } return isDirective2; } const self = { name: VUE_DIRECTIVES_NAME, async transform(s, id) { if (!RE_CONTEXT.test(s.original)) return s; const matches = Array.from(s.original.matchAll(RE_DIRECTIVE)).sort((a, b) => b.index - a.index); if (!matches.length) return s; let targets = []; for await (const [ begin, end, importEntry ] of findDirectives( isDirective, matches, this.getImports() )) { s.overwrite(begin, end, ""); targets.push(importEntry); } if (!targets.length) return s; if (!RE_DIRECTIVE.test(s.toString())) s.replace(contextText, ""); for (const addon of this.addons) { if (addon === self) continue; targets = await addon.injectImportsResolved?.call(this, targets, s, id) ?? targets; } let injection = stringifyImports(targets); for (const addon of this.addons) { if (addon === self) continue; injection = await addon.injectImportsStringified?.call(this, injection, targets, s, id) ?? injection; } s.prepend(injection); return s; }, async declaration(dts, options2) { const directivesMap = await this.getImports().then((imports) => { return imports.filter(isDirective).reduce((acc, i) => { if (i.type || i.dtsDisabled) return acc; let name; if (i.name === "default" && (i.as === "default" || !i.as)) { const file = basename(i.from); const idx = file.indexOf("."); name = idx > -1 ? file.slice(0, idx) : file; } else { name = i.as ?? i.name; } name = name[0] === "v" ? camelCase(name) : camelCase(`v-${name}`); if (!acc.has(name)) { acc.set(name, i); } return acc; }, /* @__PURE__ */ new Map()); }); if (!directivesMap.size) return dts; const directives = Array.from(directivesMap.entries()).map(([name, i]) => ` ${name}: typeof import('${options2?.resolvePath?.(i) || i.from}')['${i.name}']`).sort().join("\n"); return `${dts} // for vue directives auto import declare module 'vue' { interface GlobalDirectives { ${directives} } }`; } }; return self; } function resolvePath(cwd, path) { return path[0] === "." ? resolve(cwd, path) : path; } function normalizePath(cwd, path) { return resolvePath(cwd, path).replace(RE_BACKSLASH, "/"); } async function* findDirectives(isDirective, regexArray, importsPromise) { const imports = (await importsPromise).filter(isDirective); if (!imports.length) return; const symbols = regexArray.reduce((acc, regex) => { const [all, symbol, resolveDirectiveName] = regex; if (acc.has(symbol)) return acc; acc.set(symbol, [ regex.index, regex.index + all.length, kebabCase(resolveDirectiveName) ]); return acc; }, /* @__PURE__ */ new Map()); for (const [symbol, data] of symbols.entries()) { yield* findDirective(imports, symbol, data); } } function* findDirective(imports, symbol, [begin, end, importName]) { let resolvedName; for (const i of imports) { if (i.name === "default" && (i.as === "default" || !i.as)) { const file = basename(i.from); const idx = file.indexOf("."); resolvedName = kebabCase(idx > -1 ? file.slice(0, idx) : file); } else { resolvedName = kebabCase(i.as ?? i.name); } if (resolvedName === importName) { yield [ begin, end, { ...i, name: i.name, as: symbol } ]; return; } if (resolvedName[0] === "v") { resolvedName = resolvedName.slice(resolvedName[1] === "-" ? 2 : 1); } if (resolvedName === importName) { yield [ begin, end, { ...i, name: i.name, as: symbol } ]; return; } } } export { RE_EXCLUDE as R, VUE_TEMPLATE_NAME as V, vueTemplateAddon as a, RE_IMPORT_AS as b, RE_SEPARATOR as c, RE_MATCH as d, excludeRE as e, separatorRE as f, defineUnimportPreset as g, stringifyImports as h, importAsRE as i, dedupeImports as j, stripFileExtension as k, toTypeDeclarationItems as l, matchRE as m, toTypeDeclarationFile as n, toTypeReExports as o, getString as p, getMagicString as q, addImportToCode as r, stripCommentsAndStrings as s, toExports as t, normalizeImports as u, vueDirectivesAddon as v, resolveIdAbsolute as w, toImports as x, VUE_DIRECTIVES_NAME as y };