Skip to content

Instantly share code, notes, and snippets.

@coryodaniel
Created April 23, 2020 00:29
Show Gist options
  • Save coryodaniel/eafc93732b53c312675367fdb2781ce3 to your computer and use it in GitHub Desktop.
Save coryodaniel/eafc93732b53c312675367fdb2781ce3 to your computer and use it in GitHub Desktop.
calling an extensions command from a vs code task
{
"version": "2.0.0",
"tasks": [
{
"label": "plantuml.export",
"command": "${command:plantuml.exportCurrent}"
},
{
"label": "generate diagrams",
"type": "shell",
"command": "make diagrams",
"dependsOrder": "sequence",
"dependsOn": ["plantuml.export"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment