export async function getBaseComponentList()

in site/src/buildtime/getBaseComponentList.ts [8:14]


export async function getBaseComponentList() {
  const filePaths = await asyncGlob('src/components/*/README.md', {
    cwd: basePath,
  })
  const componentNames = filePaths.map(filePath => filePath.split('/')[2])
  return componentNames
}