public_notes/quartz/worker.ts

18 lines
518 B
TypeScript
Raw Normal View History

2023-06-05 01:35:45 +09:00
import config from "../quartz.config"
2023-07-13 16:19:35 +09:00
import { FilePath, ServerSlug } from "./path"
2023-06-05 02:37:43 +09:00
import { createFileParser, createProcessor } from "./processors/parse"
2023-06-05 01:35:45 +09:00
const transformers = config.plugins.transformers
const processor = createProcessor(transformers)
// only called from worker thread
2023-07-23 09:27:41 +09:00
export async function parseFiles(
baseDir: string,
fps: FilePath[],
allSlugs: ServerSlug[],
verbose: boolean,
) {
2023-07-10 11:32:24 +09:00
const parse = createFileParser(transformers, baseDir, fps, allSlugs, verbose)
2023-06-05 02:37:43 +09:00
return parse(processor)
2023-06-05 01:35:45 +09:00
}