-
Notifications
You must be signed in to change notification settings - Fork 0
/
synctest.sublime-project
46 lines (46 loc) · 1.45 KB
/
synctest.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
41
42
43
44
45
46
{
"folders":
[
{
"path": "./",
"file_exclude_patterns": ["*.sublime-workspace",".placeholder", "screen.css", "external.css", "script.js", "external.js", "*.html.gz", "*.css.gz", "*.js.gz"],
"folder_exclude_patterns": ["node_modules", "www/js"]
}
],
"build_systems":
[
{
"name": "LiveScripts",
// "cmd": ["slake.cmd", "-c", "$file", "build-script"],
// "cmd": ["lsc.cmd", "$file"],
"cmd": ["lsc.cmd", "-o", "../js", "-c", "$file"],
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"selector": "source.livescript",
"variants": [
{
"name": "Print",
"cmd": ["lsc.cmd", "-cp" ,"$file"]
}, {
"name": "Deploy",
"cmd": ["slake.cmd", "-c", "$file", "deploy"]
}
]
}, {
"name": "Stylus",
"cmd": ["slake.cmd", "-c", "$file", "build-styles"],
// "cmd": ["stylus.cmd", "-o", "../css/", "./screen.styl"],
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"selector": "source.stylus",
"variants": [
{
"name": "Deploy",
"cmd": ["slake.cmd", "-c", "$file", "deploy"]
}
]
}
],
"settings":
{
"build_on_save": 1
}
}