seagull-js / seagull

the core of the seagull framework
https://seagull-js.github.io/seagull/
GNU Lesser General Public License v3.0
10 stars 5 forks source link

.env files are not parsed correctly #115

Closed DfHlyu4aida closed 5 years ago

DfHlyu4aida commented 5 years ago

Given I have a project with its own .env file. When I use quotes within the env variables the quotes are interpreted literally. The expected behaviour should be an unquoted variable. I.e.: .env file:

FOO="bar"

expected env

{ "FOO": "bar"}

actual env

{ "FOO": "\"bar\""}