-
-
Notifications
You must be signed in to change notification settings - Fork 222
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
Make stdout
and stderr
properties undefined
instead of null
#246
Conversation
40eb081
to
ace8ef2
Compare
Fixed. |
Tests are failing on Windows. |
The Windows tests are fixed on CI now. The issue is that |
The
stdout
andstderr
properties can beundefined
withexeca()
, e.g. when the optionstdout: 'ignore'
was used.However with
execa.sync()
, it isnull
instead. This change increases consistency by setting those toundefined
instead.