chanlog
Version:
A beautiful tool to make changelog file
42 lines (37 loc) • 1.03 kB
JavaScript
const path = require('path')
const findUp = require('find-up')
const { readFileSync } = require('fs')
const CONFIGURATION_FILES = [
'.chanlog',
'.chanlog.cjs',
'.chanlog.json',
'.chanlog.js'
]
module.exports.getConfiguration = function () {
let config = {}
const configPath = findUp.sync(CONFIGURATION_FILES)
if (!configPath) {
return config
}
const ext = path.extname(configPath)
if (ext === '.js' || ext === '.cjs') {
const jsConfiguration = require(configPath)
if (typeof jsConfiguration === 'function') {
config = jsConfiguration()
} else {
config = jsConfiguration
}
} else {
config = JSON.parse(readFileSync(configPath))
}
/**
* @todo we could eventually have deeper validation of the configuration (using `ajv`) and
* provide a more helpful error.
*/
if (typeof config !== 'object') {
throw Error(
`[chan-log] Invalid configuration in ${configPath} provided. Expected an object but found ${typeof config}.`
)
}
return config
}