export async function safeUnlink()

in generator/utils.ts [191:195]


export async function safeUnlink(filePath: string) {
    if (existsSync(filePath)) {
        await unlink(filePath);
    }
}