forked from nglviewer/ngl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ngl.sublime-project
42 lines (42 loc) · 953 Bytes
/
ngl.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
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"tab_size": 4,
"translate_tabs_to_spaces": false,
"trim_trailing_white_space_on_save": true
},
"build_systems":
[
{
"name": "Lint",
"shell_cmd": "npm run-script lint",
"working_dir": "${project_path}",
},
{
"name": "Test",
"shell_cmd": "npm test",
"working_dir": "${project_path}",
},
{
"name": "Build",
"shell_cmd": "npm run-script build",
"working_dir": "${project_path}",
},
{
"name": "Watch",
"shell_cmd": "npm run-script watch",
"working_dir": "${project_path}",
},
{
"name": "Rollup",
"shell_cmd": "rollup -c",
"working_dir": "${project_path}",
}
]
}