UNPKG

@mintlify/prebuild

Version:

Helpful functions for Mintlify's prebuild step

9 lines (8 loc) 303 B
import fse from 'fs-extra'; export const writeAsyncApiFiles = async (asyncApiFiles) => { const asyncApiTargetPath = 'src/_props/asyncApiFiles.json'; await fse.remove(asyncApiTargetPath); await fse.outputFile(asyncApiTargetPath, JSON.stringify(asyncApiFiles), { flag: 'w', }); };