0
VSCodeのタスクからタスクを実行することはできますか?VScodeのタスク
例のJSON:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "Show In Chrome",
"windows": {
"command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
},
"osx": {
"command": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
},
"args": [
"${file}"
],
"type": "process",
},
{
"taskName": "Show Coverage",
// this is the task to call another task
}
]
は}
私は何をしたいのカバレッジフォルダ内のファイルを表示カバレッジタスクを見て、次にとしてそれを示すために、クロームタスクでショーを呼んでそのファイルの引数が渡されます。これは可能ですか?
このコメントは分かりません。 – KeniSteward