-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes.json
48 lines (48 loc) · 1.05 KB
/
recipes.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
{
"build": {
"cmd": "cargo build",
"cwd": "../../rust/waves/"
},
"py": {
"cmd": "python",
"kind": "term"
},
"luacheck": {
"cmd": "luac %"
},
"lua-repl": {
"cmd": "lua",
"kind": "term",
"restart": true
},
"local_find": {
"cmd": "find . -type f"
},
"sleep": {
"cmd": "sleep 5"
},
"long-process": {
"cmd": "notify-send Hello There",
"dependencies": [
"sleep",
{
"cmd": "firefox --url 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'",
"depends_on": [
"sleep"
]
}
]
},
"test": {
"cmd": [
"nvim",
"--headless",
"-c",
"lua require('plenary.test_harness').test_directory('./tests//', {minimal_init='./tests/init.lua', sequential=true})"
],
"env": {
"RECIPES_LOG_CONSOLE": "sync",
"RECIPES_LOG_LEVEL": "info"
}
}
}