2023-06-04 12:35:45 -04:00
|
|
|
import config from "../quartz.config"
|
2023-06-04 13:37:43 -04:00
|
|
|
import { createFileParser, createProcessor } from "./processors/parse"
|
2023-06-04 12:35:45 -04:00
|
|
|
|
|
|
|
const transformers = config.plugins.transformers
|
|
|
|
const processor = createProcessor(transformers)
|
|
|
|
|
|
|
|
// only called from worker thread
|
|
|
|
export async function parseFiles(baseDir: string, fps: string[], verbose: boolean) {
|
2023-06-04 13:37:43 -04:00
|
|
|
const parse = createFileParser(baseDir, fps, verbose)
|
|
|
|
return parse(processor)
|
2023-06-04 12:35:45 -04:00
|
|
|
}
|