UNPKG

@digicms/cms

Version:

An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite

44 lines (35 loc) 932 B
'use strict'; const path = require('path'); const fs = require('fs'); const { templateConfiguration, env, importDefault } = require('@strapi/utils'); const loadJsFile = (file) => { try { const jsModule = importDefault(file); // call if function if (typeof jsModule === 'function') { return jsModule({ env }); } return jsModule; } catch (error) { throw new Error(`Could not load js config file ${file}: ${error.message}`); } }; const loadJSONFile = (file) => { try { return templateConfiguration(JSON.parse(fs.readFileSync(file))); } catch (error) { throw new Error(`Could not load json config file ${file}: ${error.message}`); } }; const loadFile = (file) => { const ext = path.extname(file); switch (ext) { case '.js': return loadJsFile(file); case '.json': return loadJSONFile(file); default: return {}; } }; module.exports = loadFile;