Skip to content
Snippets Groups Projects
Verified Commit e9288a78 authored by Dmytro Bogatov's avatar Dmytro Bogatov :two_hearts:
Browse files

Add vscode tasks.

parent 0c7cd567
Branches
No related tags found
No related merge requests found
Pipeline #
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Compile once notes",
"type": "shell",
"command": "./build.sh -i 1 -n",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Compile multiple notes",
"type": "shell",
"command": "./build.sh -n",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Compile multiple",
"type": "shell",
"command": "./build.sh",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Compile once",
"type": "shell",
"command": "./build.sh -i 1",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Test chktex and cspell",
"type": "shell",
"command": "./build.sh -t",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"problemMatcher": []
}
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment