Comparing version 8.4.0 to 8.5.0
@@ -5,2 +5,8 @@ # Changelog | ||
## [8.5.0](https://github.com/motdotla/dotenv/compare/v8.4.0...v8.5.0) (2021-05-05) | ||
### Added | ||
- allow for `import "dotenv/config"` | ||
## [8.4.0](https://github.com/motdotla/dotenv/compare/v8.3.0...v8.4.0) (2021-05-05) | ||
@@ -7,0 +13,0 @@ |
{ | ||
"name": "dotenv", | ||
"version": "8.4.0", | ||
"version": "8.5.0", | ||
"description": "Loads environment variables from .env file", | ||
"main": "lib/main.js", | ||
"exports": { | ||
".": "./lib/main.js", | ||
"./config": "./config.js" | ||
}, | ||
"types": "types/index.d.ts", | ||
@@ -7,0 +11,0 @@ "scripts": { |
@@ -50,3 +50,3 @@ // TypeScript Version: 3.0 | ||
/** | ||
* Loads `.env` file contents into {@link https://nodejs.org/api/process.html#process_process_env | `process.env`}. | ||
* Loads `.env` file contents into {@link https://nodejs.org/api/process.html#process_process_env `process.env`}. | ||
* Example: 'KEY=value' becomes { parsed: { KEY: 'value' } } | ||
@@ -53,0 +53,0 @@ * |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23351