import { crawl } from "../utils" export async function getWidgetFilesFromSources( sources: Set ): Promise { return ( await Promise.all( Array.from(sources).map(async (source) => crawl(`${source}/widgets`)) ) ).flat() }