1
0
Fork 0

chore: Dependency updates

This commit is contained in:
Joost De Cock 2021-02-06 11:31:42 +01:00
parent 33e4d8a4d5
commit edfbb3c68c
5 changed files with 22 additions and 22 deletions

View file

@ -80,10 +80,10 @@ function readExampleFile(file, subdir = false) {
*/
function readConfigFile(file, replace = false) {
if (replace)
return yaml.safeLoad(
return yaml.load(
Mustache.render(fs.readFileSync(path.join(repoPath, 'config', file), 'utf-8'), replace)
)
return yaml.safeLoad(fs.readFileSync(path.join(repoPath, 'config', file), 'utf-8'))
return yaml.load(fs.readFileSync(path.join(repoPath, 'config', file), 'utf-8'))
}
/**