fix breaking change for dotenv-expand

This commit is contained in:
David Lechner
2022-06-03 10:23:25 -05:00
committed by David Lechner
parent d683c69590
commit 2f986cc80c
+1 -1
View File
@@ -32,7 +32,7 @@ const dotenvFiles = [
// https://github.com/motdotla/dotenv-expand
dotenvFiles.forEach(dotenvFile => {
if (fs.existsSync(dotenvFile)) {
require('dotenv-expand')(
require('dotenv-expand').expand(
require('dotenv').config({
path: dotenvFile,
})