import * as path from 'path' import * as fs from 'fs-extra' import { compiled } from 'docz-utils/lib/fs' import { format } from 'docz-utils/lib/format' import * as paths from '../config/paths' export const fromTemplates = (file: string) => { return path.join(paths.templates, file) } export const outputFileFromTemplate = async ( templatePath: string, outputPath: string, templateProps?: Record, compileProps?: Record ) => { const filepath = fromTemplates(templatePath) const template = await compiled(filepath, compileProps || { minimize: false }) const file = template(templateProps || {}) const raw = await format(file) await fs.outputFile(outputPath, raw) }