/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / .vscode / tasks.json
44 lines · 912 BCodeBlameHistory
db4e6b9links to source codeJeremy Magland 1{
2 "version": "2.0.0",
3 "tasks": [
0602a7eui improvementsJeremy Magland 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 },
db4e6b9links to source codeJeremy Magland 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": []
d824abcimprove timeseries viewJeremy Magland 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": []
db4e6b9links to source codeJeremy Magland 42 }
43 ]
moveopenescclose