fix(node): change the default port to 0 for node:execute

ISSUES CLOSED: #1728
This commit is contained in:
Jonathan Cammisuli 2020-02-19 16:27:36 -05:00 committed by Victor Savkin
parent 564ff5a642
commit 1cc9dd6bb7
4 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ Ensures the app is starting with debugging
### port
Default: `7777`
Default: `0`
Type: `number`

View File

@ -37,7 +37,7 @@ Ensures the app is starting with debugging
### port
Default: `7777`
Default: `0`
Type: `number`

View File

@ -37,7 +37,7 @@ Ensures the app is starting with debugging
### port
Default: `7777`
Default: `0`
Type: `number`

View File

@ -22,7 +22,7 @@
},
"port": {
"type": "number",
"default": 7777,
"default": 0,
"description": "The port to inspect the process on. Setting port to 0 will assign random free ports to all forked processes."
},
"watch": {