1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "label": "Generate Posts Index",
6 "type": "shell",
7 "command": "./devel/generate_posts_index.sh",
8 "group": "build",
9 "presentation": {
10 "reveal": "silent",
11 "panel": "shared"
12 },
13 "problemMatcher": []
14 },
15 {
16 "label": "Format Code",
17 "type": "shell",
18 "command": "./devel/format_code.sh",
19 "group": {
20 "kind": "build",
21 "isDefault": true
22 },
23 "presentation": {
24 "reveal": "always",
25 "panel": "shared"
26 },
27 "problemMatcher": []
28 },
29 {
30 "label": "Web UI Dev Server",
31 "type": "shell",
32 "command": "cd web-ui && npm run dev",
33 "group": {
34 "kind": "build",
35 "isDefault": true
36 },
37 "presentation": {
38 "reveal": "always",
39 "panel": "new"
40 },
41 "problemMatcher": []
42 }
43 ]
44}