@@ -142,7 +142,7 @@ changes:
142
142
* ` options ` {Object}
143
143
* ` cwd ` {string} Current working directory of the child process.
144
144
** Default:** ` null ` .
145
- * ` env ` {Object} Environment key-value pairs. ** Default:** ` null ` .
145
+ * ` env ` {Object} Environment key-value pairs. ** Default:** ` process.env ` .
146
146
* ` encoding ` {string} ** Default:** ` 'utf8' `
147
147
* ` shell ` {string} Shell to execute the command with. See
148
148
[ Shell Requirements] [ ] and [ Default Windows Shell] [ ] . ** Default:**
@@ -245,7 +245,7 @@ changes:
245
245
* ` args ` {string[ ] } List of string arguments.
246
246
* ` options ` {Object}
247
247
* ` cwd ` {string} Current working directory of the child process.
248
- * ` env ` {Object} Environment key-value pairs.
248
+ * ` env ` {Object} Environment key-value pairs. ** Default: ** ` process.env ` .
249
249
* ` encoding ` {string} ** Default:** ` 'utf8' `
250
250
* ` timeout ` {number} ** Default:** ` 0 `
251
251
* ` maxBuffer ` {number} Largest amount of data in bytes allowed on stdout or
@@ -335,7 +335,7 @@ changes:
335
335
* ` detached ` {boolean} Prepare child to run independently of its parent
336
336
process. Specific behavior depends on the platform, see
337
337
[ ` options.detached ` ] [ ] ).
338
- * ` env ` {Object} Environment key-value pairs.
338
+ * ` env ` {Object} Environment key-value pairs. ** Default: ** ` process.env ` .
339
339
* ` execPath ` {string} Executable used to create the child process.
340
340
* ` execArgv ` {string[ ] } List of string arguments passed to the executable.
341
341
** Default:** ` process.execArgv ` .
@@ -400,7 +400,7 @@ changes:
400
400
* ` args ` {string[ ] } List of string arguments.
401
401
* ` options ` {Object}
402
402
* ` cwd ` {string} Current working directory of the child process.
403
- * ` env ` {Object} Environment key-value pairs.
403
+ * ` env ` {Object} Environment key-value pairs. ** Default: ** ` process.env ` .
404
404
* ` argv0 ` {string} Explicitly set the value of ` argv[0] ` sent to the child
405
405
process. This will be set to ` command ` if not specified.
406
406
* ` stdio ` {Array|string} Child's stdio configuration (see
@@ -714,7 +714,7 @@ changes:
714
714
* ` stdio ` {string|Array} Child's stdio configuration. ` stderr ` by default will
715
715
be output to the parent process' stderr unless ` stdio ` is specified.
716
716
** Default:** ` 'pipe' ` .
717
- * ` env ` {Object} Environment key-value pairs.
717
+ * ` env ` {Object} Environment key-value pairs. ** Default: ** ` process.env ` .
718
718
* ` uid ` {number} Sets the user identity of the process (see setuid(2)).
719
719
* ` gid ` {number} Sets the group identity of the process (see setgid(2)).
720
720
* ` timeout ` {number} In milliseconds the maximum amount of time the process
@@ -777,7 +777,7 @@ changes:
777
777
* ` stdio ` {string|Array} Child's stdio configuration. ` stderr ` by default will
778
778
be output to the parent process' stderr unless ` stdio ` is specified.
779
779
** Default:** ` 'pipe' ` .
780
- * ` env ` {Object} Environment key-value pairs.
780
+ * ` env ` {Object} Environment key-value pairs. ** Default: ** ` process.env ` .
781
781
* ` shell ` {string} Shell to execute the command with. See
782
782
[ Shell Requirements] [ ] and [ Default Windows Shell] [ ] . ** Default:**
783
783
` '/bin/sh' ` on Unix, ` process.env.ComSpec ` on Windows.
@@ -844,7 +844,7 @@ changes:
844
844
* ` argv0 ` {string} Explicitly set the value of ` argv[0] ` sent to the child
845
845
process. This will be set to ` command ` if not specified.
846
846
* ` stdio ` {string|Array} Child's stdio configuration.
847
- * ` env ` {Object} Environment key-value pairs.
847
+ * ` env ` {Object} Environment key-value pairs. ** Default: ** ` process.env ` .
848
848
* ` uid ` {number} Sets the user identity of the process (see setuid(2)).
849
849
* ` gid ` {number} Sets the group identity of the process (see setgid(2)).
850
850
* ` timeout ` {number} In milliseconds the maximum amount of time the process
0 commit comments