homepage-plus/src/utils/config.js
2022-08-25 14:07:14 +03:00

16 lines
520 B
JavaScript

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) {
console.log("error copying config", err);
throw err;
}
console.info("%s was copied to the config folder", config);
});
}
}