osls
Version:
Open-source alternative to Serverless Framework
38 lines (27 loc) • 1.22 kB
JavaScript
;
const dotenv = require('dotenv');
const dotenvExpand = require('dotenv-expand');
const path = require('path');
const ServerlessError = require('../serverless-error');
const isMissingFileError = (error) => error.code === 'ENOENT';
const throwDotenvError = (error, filePath) => {
const errorMessage = `Failed to load environment variables from "${filePath}": ${error}`;
throw new ServerlessError(errorMessage, 'DOTENV_LOAD_ERROR');
};
const loadDotenvFrom = (envFilePath) => {
const config = dotenv.config({ path: envFilePath });
return dotenvExpand.expand(config);
};
module.exports = (stage) => {
const defaultEnvFilePath = path.join(process.cwd(), '.env');
const stageEnvFilePath = path.join(process.cwd(), `.env.${stage}`);
const { error: stageEnvResultError } = loadDotenvFrom(stageEnvFilePath);
if (!stageEnvResultError) return;
if (!isMissingFileError(stageEnvResultError)) {
throwDotenvError(stageEnvResultError, stageEnvFilePath);
}
const { error: defaultEnvResultError } = loadDotenvFrom(defaultEnvFilePath);
if (defaultEnvResultError && !isMissingFileError(defaultEnvResultError)) {
throwDotenvError(defaultEnvResultError, defaultEnvFilePath);
}
};