Skip to content
This repository was archived by the owner on May 15, 2019. It is now read-only.

Commit 3bd63cd

Browse files
committed
1.0.0-alpha.18
1 parent b7970eb commit 3bd63cd

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
##### 1.0.0-alpha.18 - xx May 2017
1+
##### 1.0.0-alpha.18 - 08 May 2017
22

33
###### Backwards compatible changes
44
- Hid some annoying warning messages
5+
- Add ability to set more options on the Emulator child process
56

67
##### 1.0.0-alpha.17 - 04 May 2017
78

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@google-cloud/functions-emulator",
33
"description": "Google Cloud Functions Emulator",
4-
"version": "1.0.0-alpha.17",
4+
"version": "1.0.0-alpha.18",
55
"license": "Apache-2.0",
66
"author": "Google Inc.",
77
"engines": {

src/cli/controller.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -630,11 +630,7 @@ class Controller {
630630
// lifecycle of the parent process. This means we should also ignore the
631631
// binding of stdout.
632632

633-
child = spawn('node', args, {
634-
cwd: opts.cwd,
635-
detached: opts.detached,
636-
stdio: opts.stdio
637-
});
633+
child = spawn('node', args, opts);
638634

639635
// Update status of settings
640636
this.server.set({

0 commit comments

Comments
 (0)