-
Notifications
You must be signed in to change notification settings - Fork 18
/
convex-web.sublime-project
40 lines (40 loc) · 1.06 KB
/
convex-web.sublime-project
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
{
"pep": {
"classpath": ["clojure", "-A:dev:site-dev:test", "-Spath"],
"paths": ["src"]
},
"folders": [
{
"path": ".",
"file_exclude_patterns": ["*iml"],
"folder_exclude_patterns": [".clj-kondo", "log", "target", "deployment"],
}
],
"build_systems": [
{
"name": "Check outdated",
"shell_cmd": "clj -M:outdated:logback-dev",
"working_dir": "$project_path"
},
{
"name": "Run tests",
"shell_cmd": "bin/test",
"working_dir": "$project_path"
},
{
"name": "Run tests with Kaocha",
"shell_cmd": "bin/kaocha",
"working_dir": "$project_path"
},
{
"name": "Release app",
"shell_cmd": "npm run app:release",
"working_dir": "$project_path"
},
{
"name": "Release styles",
"shell_cmd": "npm run styles:release",
"working_dir": "$project_path"
}
]
}