2023-06-04 16:35:45 +00:00
|
|
|
import config from "../quartz.config"
|
2023-06-04 17:37:43 +00:00
|
|
|
import { createFileParser, createProcessor } from "./processors/parse"
|
2023-06-04 16:35:45 +00: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-20 05:50:25 +00:00
|
|
|
const parse = createFileParser(transformers, baseDir, fps, verbose)
|
2023-06-04 17:37:43 +00:00
|
|
|
return parse(processor)
|
2023-06-04 16:35:45 +00:00
|
|
|
}
|