Skip to content

Commit

Permalink
upgrade dotenv deps
Browse files Browse the repository at this point in the history
  • Loading branch information
borisding committed Mar 18, 2022
1 parent e91094f commit 4d0f5ab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion env.loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (NODE_ENV !== 'production') {
// expand existing environment variables with targeted .env file
let parsed;
if (fs.existsSync(envFile)) {
const result = dotenvExpand(dotenv.config({ path: envFile }));
const result = dotenvExpand.expand(dotenv.config({ path: envFile }));
parsed = result.parsed;
}

Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "universsr",
"version": "7.2.1",
"version": "7.3.0",
"description": "Universal React web app boilerplate.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -48,8 +48,8 @@
"compression": "^1.7.4",
"core-js": "^3.21.1",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"dotenv": "^16.0.0",
"dotenv-expand": "^8.0.2",
"express": "^4.17.3",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
Expand Down

0 comments on commit 4d0f5ab

Please sign in to comment.