You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will provide the default settings to DEBUG if it's not defined, and enforce NODE_ENV=development unless specified.
I'd like this feature to remain always; I can add it to the documentation if you like, but I have no idea how to write a test for it. I had a look at the tests but couldn't figure it out quickly.
The text was updated successfully, but these errors were encountered:
@wmertens So this issue is to say that this current feature simply needs documentation? I can write a test for it. If you're willing to document it, that would be great.
When putting something like
process.env.hello = 'hi'
in thepackage-scripts.js
file, you gethello=hi
in the spawned environment.To me, that is a very nice feature, because I can provide helper vars to scripts, while the commands stay somewhat readable, e.g.
This will provide the default settings to
DEBUG
if it's not defined, and enforceNODE_ENV=development
unless specified.I'd like this feature to remain always; I can add it to the documentation if you like, but I have no idea how to write a test for it. I had a look at the tests but couldn't figure it out quickly.
The text was updated successfully, but these errors were encountered: