Skip to content

Commit

Permalink
chore: bump dotenv to v8.2.0 (#18)
Browse files Browse the repository at this point in the history
* chore: bump dotenv to ^8.2.0

BREAKING CHANGE: drops support for Node v6, which has reached end-of-life.

* chore: drop load alias for config

BREAKING CHANGE: this alias was removed in dotenv v7.0.0.
  • Loading branch information
nwalters512 committed Jun 22, 2020
1 parent b9f49b8 commit 81b7b5d
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 19 deletions.
47 changes: 33 additions & 14 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
],
"homepage": "https://github.com/mrsteele/dotenv-defaults#readme",
"dependencies": {
"dotenv": "^6.2.0"
"dotenv": "^8.2.0"
},
"devDependencies": {
"jest": "^25.0.0",
Expand Down
5 changes: 1 addition & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ const config = (options = {}) => {
}
}

const load = config

module.exports = {
parse,
config,
load
config
}

0 comments on commit 81b7b5d

Please sign in to comment.