homepage/src/utils/config.js

14 lines
452 B
JavaScript
Raw Normal View History

2022-08-24 10:44:35 +03:00
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);
});
}
}