UNPKG

voxa-cli

Version:
11 lines (7 loc) 262 B
"use strict"; const path = require("path"); const env = process.env.NODE_ENV || "local.example"; const configFile = require(path.join(__dirname, `${env}.json`)); configFile.env = env; module.exports = configFile; module.exports.asFunction = () => configFile;