Comparing version 14.1.0 to 14.1.1
@@ -5,4 +5,12 @@ # Changelog | ||
## [Unreleased](https://github.com/motdotla/dotenv/compare/v14.0.0...master) | ||
## [Unreleased](https://github.com/motdotla/dotenv/compare/v14.1.1...master) | ||
(place unreleased comments here) | ||
## [14.1.1](https://github.com/motdotla/dotenv/compare/v14.1.0...v14.1.1) (2022-01-17) | ||
### Added | ||
- Add React gotcha to FAQ on README | ||
## [14.1.0](https://github.com/motdotla/dotenv/compare/v14.0.1...v14.1.0) (2022-01-17) | ||
@@ -9,0 +17,0 @@ |
{ | ||
"name": "dotenv", | ||
"version": "14.1.0", | ||
"version": "14.1.1", | ||
"description": "Loads environment variables from .env file", | ||
@@ -22,3 +22,3 @@ "main": "lib/main.js", | ||
"pretest": "npm run lint && npm run dts-check", | ||
"test": "tap tests/*.js --100", | ||
"test": "tap tests/*.js --100 -Rspec", | ||
"prerelease": "npm test", | ||
@@ -43,10 +43,10 @@ "release": "standard-version" | ||
"devDependencies": { | ||
"@types/node": "^17.0.8", | ||
"decache": "^4.5.1", | ||
"dtslint": "^3.4.2", | ||
"sinon": "^7.5.0", | ||
"@types/node": "^17.0.9", | ||
"decache": "^4.6.1", | ||
"dtslint": "^3.7.0", | ||
"sinon": "^12.0.1", | ||
"standard": "^16.0.4", | ||
"standard-markdown": "^7.1.0", | ||
"standard-version": "^9.3.2", | ||
"tap": "^14.11.0", | ||
"tap": "^15.1.6", | ||
"typescript": "^4.5.4" | ||
@@ -53,0 +53,0 @@ }, |
@@ -277,2 +277,6 @@ <p align="center"> | ||
### How come my environment variables are not showing up for React? | ||
React has dotenv built in but with a quirk. Preface your environment variables with `REACT_APP_`. See [this stack overflow](https://stackoverflow.com/questions/42182577/is-it-possible-to-use-dotenv-in-a-react-project) for more details. | ||
### Can I customize/write plugins for dotenv? | ||
@@ -289,6 +293,2 @@ | ||
### What about variable expansion? | ||
Try [dotenv-expand](https://github.com/motdotla/dotenv-expand) | ||
### How do I use dotenv with `import`? | ||
@@ -350,2 +350,10 @@ | ||
### What about variable expansion? | ||
Try [dotenv-expand](https://github.com/motdotla/dotenv-expand) | ||
### What about syncing .env files? | ||
Try [dotenv cli](https://github.com/dotenv-org/cli) | ||
## Contributing Guide | ||
@@ -352,0 +360,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
30307
369