import { join } from "path"; import { existsSync, copyFile } from "fs"; export default function checkAndCopyConfig(config) { const configYaml = join(process.cwd(), "config", config); if (!existsSync(configYaml)) { const configSkeleton = join(process.cwd(), "src", "skeleton", config); copyFile(configSkeleton, configYaml, (err) => { if (err) throw err; console.info("%s was copied to the config folder", config); }); } }