-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJeeves.sublime-settings
55 lines (55 loc) · 1.26 KB
/
Jeeves.sublime-settings
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
50
51
52
53
54
55
{
"enabled": true,
"filter-folders": false,
"folders": [
"nick-arc-webapp",
"common-arc",
"kfar",
"WowBone"
],
"build": {
"WowBone": {
"js": {
"enabled-save": true,
"enabled-key": true,
"type": "build",
"build": {
// Executes default build system set. Can override with variant below.
//"variant":"asd"
}
// -or- Override manually with custom build
// "exec": {
// "cmd": ["grunt", "--no-color"],
// "working_dir": "${folder:${project_path:${file_path}}}",
// "path": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/silent/bin:/usr/local/share/npm/bin/"
// }
},
"css": {
"build": { // Default build system (grunt)
}
}
},
"default": {
"js": {
"enabled-save": true,
"enabled-key": true,
"type": "exec",
"exec": {
"cmd": ["mvn", "-Dgoogle.force=false", "-Djs.enabled=true", "-Dcss.enabled=false", "antrun:run", "-Plocalhost,!default"]
}
},
"css": {
"enabled-save": true,
"enabled-key": true,
"enabled": true,
"type": "exec",
"exec": {
"cmd": ["mvn", "-Dgoogle.force=false", "-Djs.enabled=false", "-Dcss.enabled=true", "antrun:run", "-Plocalhost,!default"]
}
//"build": {
// "variant":"Recompile"
//}
}
}
}
}