tasks.json 695 B

12345678910111213141516171819202122232425
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "generate html",
  8. "type": "shell",
  9. "command": "asciidoctor *.adoc -D ./out/",
  10. "problemMatcher": [],
  11. "presentation": {
  12. "echo": true,
  13. "reveal": "silent",
  14. "focus": false,
  15. "panel": "shared",
  16. "showReuseMessage": true,
  17. "clear": false
  18. },
  19. "group": {
  20. "kind": "build",
  21. "isDefault": true
  22. }
  23. }
  24. ]
  25. }