-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp-config.json
48 lines (48 loc) · 1004 Bytes
/
gulp-config.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
42
43
44
45
46
47
48
{
"build": "public",
"port": "8008",
"jade": {
"views": {
"base": "views",
"src": "views/**/*.jade",
"open": "index.html"
},
"templates": {
"src": "views/templates/**/*.jade"
}
},
"scripts": {
"project": {
"src": "assets/scripts/main.js",
"watch": "assets/scripts/**/*.js",
"out": "main.js"
},
"vendor": {
"src": [
"bower_components/modernizr/modernizr.js",
"bower_components/jquery/dist/jquery.min.js"
],
"out": "vendor.js"
},
"dest": "public/js"
},
"styles": {
"project": {
"src": "assets/styles/*.styl",
"watch": "assets/styles/**/*",
"dest": "public/css",
"out": "main.css",
"browsers": ["last 5 versions"]
},
"vendor": {
"src": [
"bower_components/normalize.styl/normalize.styl"
],
"dest": "assets/styles/vendor"
}
},
"images": {
"src": "assets/images/**/*",
"dest": "public/images"
}
}