Skip to content

Commit

Permalink
fix(node): change the default port to 0 for node:execute
Browse files Browse the repository at this point in the history
ISSUES CLOSED: #1728
  • Loading branch information
Cammisuli authored and vsavkin committed Feb 25, 2020
1 parent 564ff5a commit 1cc9dd6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/angular/api-node/builders/execute.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Ensures the app is starting with debugging

### port

Default: `7777`
Default: `0`

Type: `number`

Expand Down
2 changes: 1 addition & 1 deletion docs/react/api-node/builders/execute.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Ensures the app is starting with debugging

### port

Default: `7777`
Default: `0`

Type: `number`

Expand Down
2 changes: 1 addition & 1 deletion docs/web/api-node/builders/execute.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Ensures the app is starting with debugging

### port

Default: `7777`
Default: `0`

Type: `number`

Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/builders/execute/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 1cc9dd6

Please sign in to comment.