-
-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support 'single$quote'
syntax to not expand
#112
Comments
This latest release broke my staging environemnt. My .env file has something similar to:
During deployment the dotenv-expand upgraded to the latest release and broke during runtime. The expansion failed, |
@jahdiel what version did you bump up from? And does your |
@jahdiel nevermind. i see the issue. working on the fix. so sorry about this. in the meantime, you can fix it by changing your dotenv expand code from: var dotenv = require('dotenv')
var dotenvExpand = require('dotenv-expand')
dotenvExpand.expand(dotenv.config()) to var dotenv = require('dotenv')
var dotenvExpand = require('dotenv-expand')
dotenvExpand.expand(dotenv.config({ processEnv: {} })) |
dotenv-expand cannot reliably recognize single quotes. use dotenvx to reliably avoid expansion with single quotes. |
add feature so that single quote syntax does not expand
$
dollar signs. (this likely requires coordination with dotenvwho needs this? please let me know below.
The text was updated successfully, but these errors were encountered: