170 lines
4.8 KiB
JSON
170 lines
4.8 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build LaTeX Document",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Clean Build Files",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["clean"],
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Full Build (Clean + Build)",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["full"],
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "View PDF",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["view"],
|
|
"group": "none",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Docker Build",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["docker-build"],
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Docker Clean",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["docker-clean"],
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "List Chapters",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["chapters"],
|
|
"group": "none",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Word Count",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["count"],
|
|
"group": "none",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Check Prerequisites",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["check"],
|
|
"group": "none",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Docker Info",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["docker-info"],
|
|
"group": "none",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|