-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulp-conf.json
41 lines (41 loc) · 1.07 KB
/
gulp-conf.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
{
"clean": {
"css": [
"public/css/*"
],
"js": [
"public/js/*",
"!public/js/vendor/**"
]
},
"sass": {
"src": "./public/app/sass/*.scss",
"watch": ["./public/app/sass/**/*.scss"],
"dest": "./public/css"
},
"templates": {
"src": ["./public/app/pages/*.html"],
"module": "busesLiveApp",
"filename": "templates.js",
"standalone": false,
"dest": "./public/js"
},
"scripts": {
"vendor": [
"public/bower_components/angular/angular.js",
"public/bower_components/angular-ui-router/release/angular-ui-router.js",
"public/bower_components/ngmap/build/scripts/ng-map.js"
],
"src": [
"public/app/js/app.js",
"public/app/js/services/*.js",
"public/app/js/directives/*.js",
"public/app/js/controllers/*.js"
]
},
"livereload": {
"basePath": "./public/",
"reloadPage": "index.html",
"port": 35729
}
}