/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / .vscode / tasks.json
55 lines · 1.1 KBCodeBlameHistory
db4e6b9links to source codeJeremy Magland 1{
2 "version": "2.0.0",
3 "tasks": [
bcd9497update readmeJeremy Magland 4 {
5 "label": "Compile Paper",
6 "type": "shell",
9450f68update paperJeremy Magland 7 "command": "./devel/compile_paper.sh",
bcd9497update readmeJeremy Magland 8 "group": "build",
9 "presentation": {
10 "reveal": "always",
11 "panel": "new"
12 },
13 "problemMatcher": []
14 },
0602a7eui improvementsJeremy Magland 15 {
16 "label": "Generate Posts Index",
17 "type": "shell",
18 "command": "./devel/generate_posts_index.sh",
19 "group": "build",
20 "presentation": {
21 "reveal": "silent",
22 "panel": "shared"
23 },
24 "problemMatcher": []
25 },
db4e6b9links to source codeJeremy Magland 26 {
27 "label": "Format Code",
28 "type": "shell",
29 "command": "./devel/format_code.sh",
30 "group": {
31 "kind": "build",
32 "isDefault": true
33 },
34 "presentation": {
35 "reveal": "always",
36 "panel": "shared"
37 },
38 "problemMatcher": []
d824abcimprove timeseries viewJeremy Magland 39 },
40 {
41 "label": "Web UI Dev Server",
42 "type": "shell",
43 "command": "cd web-ui && npm run dev",
44 "group": {
45 "kind": "build",
46 "isDefault": true
47 },
48 "presentation": {
49 "reveal": "always",
50 "panel": "new"
51 },
52 "problemMatcher": []
db4e6b9links to source codeJeremy Magland 53 }
54 ]
moveopenescclose