-
-
Notifications
You must be signed in to change notification settings - Fork 861
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: motdotla/dotenv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.4.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: motdotla/dotenv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.5.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 8 commits
- 3 files changed
- 3 contributors
Commits on Jan 16, 2021
-
Allow for
import "dotenv/config";
in Node.jsCurrently the officially recommended method for auto-importing works with Babel-like configuration that automatically resolves `dotenv/config` to `dotenv/config.js`. However, Node.js doesn't do this resolution, and instead you have to manually specify the extension like this: ```js // Babel OK, doesn't work on Node.js import "dotenv/config"; // Works on Node.js (and Babel etc) // See #89 (comment) import "dotenv/config.js"; ``` A way of fixing this is by defining the export mapping in `package.json` as [explained in Node.js documentation](https://nodejs.org/api/packages.html#packages_package_entry_points): ```js "exports": { ".": "./lib/main.js", "./config": "./config.js" }, ```
Configuration menu - View commit details
-
Copy full SHA for 30a01b2 - Browse repository at this point
Copy the full SHA 30a01b2View commit details
Commits on Feb 21, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 917428f - Browse repository at this point
Copy the full SHA 917428fView commit details
Commits on Apr 25, 2021
-
Configuration menu - View commit details
-
Copy full SHA for fcde63f - Browse repository at this point
Copy the full SHA fcde63fView commit details
Commits on May 5, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 79b43fd - Browse repository at this point
Copy the full SHA 79b43fdView commit details -
Merge pull request #513 from ImRodry/patch-1
Fix small typo in JSDoc comment
Configuration menu - View commit details
-
Copy full SHA for 5ff8f48 - Browse repository at this point
Copy the full SHA 5ff8f48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0db3a93 - Browse repository at this point
Copy the full SHA 0db3a93View commit details -
Merge pull request #503 from franciscop/patch-1
Allow for `import "dotenv/config";` in Node.js
Configuration menu - View commit details
-
Copy full SHA for 31a90b7 - Browse repository at this point
Copy the full SHA 31a90b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d9038f - Browse repository at this point
Copy the full SHA 9d9038fView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v8.4.0...v8.5.0