-
Notifications
You must be signed in to change notification settings - Fork 133
/
tasks.json
47 lines (47 loc) · 1.05 KB
/
tasks.json
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
{
"version": "2.0.0",
"tasks": [
{
"type": "gulp",
"label": "gulp watch",
"task": "watch",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"runOptions": {
"runOn": "folderOpen"
}
},
{
"type": "shell",
"label": "bundle install",
"command": "bundle install",
"problemMatcher": []
},
{
"type": "shell",
"label": "bundle serve",
"command": "bundle exec jekyll serve --host 0.0.0.0 --port 4000 --config _config.yml",
"problemMatcher": []
},
{
"type": "shell",
"label": "bundle serve developer",
"command": "bundle exec jekyll serve --host 0.0.0.0 --port 4000 --config _config.yml,_developer.yml",
"problemMatcher": [],
"runOptions": {
"runOn": "folderOpen"
}
}
]
}