-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathtasks.json
More file actions
86 lines (86 loc) · 1.68 KB
/
Copy pathtasks.json
File metadata and controls
86 lines (86 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"tasks": [
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": [],
"label": "npm: build",
"detail": "lerna run build"
},
{
"type": "shell",
"command": "./.vscode/scripts/rebuild-lab.sh",
"group": "build",
"problemMatcher": [],
"label": "rebuild-lab",
"detail": "rebuild lab"
},
{
"type": "shell",
"command": "./.vscode/scripts/watch-lab.sh",
"group": "build",
"problemMatcher": [],
"label": "watch-lab",
"detail": "watch lab",
"presentation": {
"panel": "dedicated"
}
},
{
"type": "shell",
"command": "./.vscode/scripts/watch-webapp.sh",
"group": "build",
"problemMatcher": [],
"label": "watch-webapp",
"detail": "watch webapp",
"presentation": {
"panel": "dedicated"
}
},
{
"type": "shell",
"command": "jupyter lab",
"group": "build",
"problemMatcher": [],
"label": "Run Jupyter Lab",
"detail": "Run Jupyter Lab",
"presentation": {
"panel": "dedicated"
}
},
{
"type": "shell",
"command": "./.vscode/scripts/run-webapp.sh",
"group": "build",
"problemMatcher": [],
"label": "run-webapp",
"detail": "run webapp",
"presentation": {
"panel": "dedicated"
},
"inputs": [
{
"id": "head",
"description": "Head Notebook:",
"default": "./nbdime/tests/files/apap--1.ipynb",
"type": "promptString"
},
{
"id": "base",
"description": "Base Notebook:",
"default": "./nbdime/tests/files/apap.ipynb",
"type": "promptString"
}
]
},
{
"type": "npm",
"script": "test",
"group": "test",
"problemMatcher": [],
"label": "npm: test",
"detail": "lerna run test"
}
]
}