Skip to content

Commit

Permalink
Adding pipeArgs documentation. (#1202)
Browse files Browse the repository at this point in the history
* Adding pipeArgs documentation.

* Ran "gulp generateOptionsSchema" to update package.json.

Fixed instructions in the readme.md
  • Loading branch information
rajkumar42 authored and gregg-miskelly committed Feb 8, 2017
1 parent e2622f6 commit add9a96
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -754,7 +754,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -791,7 +791,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -828,7 +828,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -964,7 +964,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1004,7 +1004,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1041,7 +1041,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1078,7 +1078,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1151,4 +1151,4 @@
}
]
}
}
}
4 changes: 2 additions & 2 deletions src/tools/OptionsSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -64,7 +64,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion src/tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
OptionsSchema.json defines the type for Launch/Attach options.

# GenerateOptionsSchema
If there are any modifications to the OptionsSchema.json file. Please run `gulp updateOptionsSchema` at the repo root.
If there are any modifications to the OptionsSchema.json file. Please run `gulp generateOptionsSchema` at the repo root.
This will call GenerateOptionsSchema and update the package.json file.

**NOTE:** *Any manual changes to package.json's object.contributes.debuggers[0].configurationAttributes will be
Expand Down

0 comments on commit add9a96

Please sign in to comment.