mirror of
https://github.com/dilllxd/gitfolio.git
synced 2024-08-14 22:28:09 +00:00
33 lines
853 B
JavaScript
33 lines
853 B
JavaScript
const path = require("path");
|
|
const bluebird = require("bluebird");
|
|
const fs = bluebird.promisifyAll(require("fs"));
|
|
|
|
const outDir = path.resolve("./dist/" || process.env.OUT_DIR);
|
|
const configPath = path.join(outDir, "config.json");
|
|
|
|
const defaultConfigPath = path.resolve(`${__dirname}/default/config.json`);
|
|
|
|
/**
|
|
* Tries to read file from out dir,
|
|
* if not present returns default file contents
|
|
*/
|
|
async function getFileWithDefaults(file, defaultFile) {
|
|
try {
|
|
await fs.accessAsync(file, fs.constants.F_OK);
|
|
} catch (error) {
|
|
const defaultData = await fs.readFileAsync(defaultFile);
|
|
return JSON.parse(defaultData);
|
|
}
|
|
|
|
const data = await fs.readFileAsync(file);
|
|
return JSON.parse(data);
|
|
}
|
|
|
|
async function getConfig() {
|
|
return getFileWithDefaults(configPath, defaultConfigPath);
|
|
}
|
|
|
|
module.exports = {
|
|
outDir,
|
|
getConfig
|
|
};
|