-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.terminalusrc
40 lines (40 loc) · 1 KB
/
.terminalusrc
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
{
"title" : "halt and catch fire",
"frames": {
"eslint": {
"label": "ESLint",
"cmd": "lint",
"args": [ "--", "--color" ],
"watch": "source/**/*.@(js|json)"
},
"flow": {
"label": "Flow",
"cmd": "flow",
"args": [ "--", "--color=always" ]
},
"tape": {
"label": "Tape",
"cmd": "test",
"args": [ "--", "--color" ],
"watch": "source/**/*.test.js"
},
"babel": {
"label": "Babel",
"cmd": "build",
"watch": "source/**/*.@(js|json)",
"args": [ "--", "--color" ]
},
"debug": {
"label": "Node inspect",
"cmd": "node",
"args": [ "--inspect-brk", "source/test.js" ]
}
},
"layout": {
"td:70": {
"tr:50": [ "tape", "flow" ],
"tr": [ "eslint" ]
},
"td": [ "debug", "babel" ]
}
}