tom-microservice
Version:
Tom creates customers, subscriptions plans & send notifications.
20 lines (17 loc) • 362 B
JavaScript
const JoyCon = require('joycon')
module.exports = async (cwd = process.cwd()) => {
const joycon = new JoyCon({
cwd,
packageKey: 'tom',
files: [
'package.json',
'.tomrc',
'.tomrc.json',
'.tomrc.js',
'tom.config.js'
]
})
const { data: config = {} } = (await joycon.load()) || {}
return config
}