export * from './types.js';
export * from './utils.js';
export * from './loader.js';
export default async (cwd, paths, parser, renderer, options = {}) => Promise.all(paths.map(async (path) => await parser(cwd, path))).then(async (files) => await renderer({ ...options, files }));