Created
April 23, 2020 00:29
-
-
Save coryodaniel/eafc93732b53c312675367fdb2781ce3 to your computer and use it in GitHub Desktop.
calling an extensions command from a vs code task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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