-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-pty-dev.json
49 lines (49 loc) · 1.02 KB
/
run-pty-dev.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
48
49
[
{
"command": ["st", "-p", "2345", "-nc", "-d", "build", "-i", "index.html"],
"title": "serve http://localhost:2345/",
"status": {
"listening at http.*:2345": ["✅", "+"],
"ERROR": ["🚨", "E"],
"200": null
}
},
{
"command": ["elm-watch", "hot"],
"title": "elm-watch",
"status": {
"⏳": ["⏳", "W"],
"🚨": ["🚨", "E"],
"✅": ["✅", "+"]
},
"defaultStatus": ["⏳", "W"]
},
{
"command": [
"nodemon",
"-w",
"src/index.html",
"-x",
"cp src/index.html build/"
],
"title": "watch index.html",
"status": {
"Error": ["🚨", "E"],
"\\[nodemon\\] clean exit": ["✅", "+"]
}
},
{
"command": [
"nodemon",
"-w",
"vendor/dolph/dictionary/popular.txt",
"scripts/generate-dictionary.js"
],
"title": "watch dictionary",
"status": {
"Error": ["🚨", "E"],
"process failed": ["🚨", "E"],
"\\[nodemon\\] clean exit": ["✅", "+"]
}
}
]