UNPKG

knip

Version:

Find unused files, dependencies and exports in your TypeScript and JavaScript projects

5 lines (4 loc) 282 B
import { fencedCodeBlockMatcher, importMatcher } from './compilers.js'; const condition = (hasDependency) => hasDependency('astro'); const compiler = (text) => [...text.replace(fencedCodeBlockMatcher, '').matchAll(importMatcher)].join('\n'); export default { condition, compiler };