123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Push code",
- "type": "shell",
- "command": "${workspaceFolder}/.vscode/push.sh ${workspaceFolder}",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": []
- },
- {
- "label": "Set mode: TDD",
- "type": "shell",
- "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} tdd",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "problemMatcher": []
- },
- {
- "label": "Set mode: TCR",
- "type": "shell",
- "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} tcr",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "problemMatcher": []
- },
- {
- "label": "Set mode: TCR-Hard",
- "type": "shell",
- "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} tcr-hard",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "problemMatcher": []
- },
- {
- "label": "Set mode: normal",
- "type": "shell",
- "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} normal",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- }
- }
- ]
- }
|