-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulp_config.json
53 lines (53 loc) · 1.51 KB
/
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
49
50
51
52
53
{
"app": {
"env": "dev",
"basedir": "styleguide",
"ghpages": "styleguide"
},
"vendors": {
"css": [
"node_modules/jquery.filer/css/jquery.filer.css",
"node_modules/jquery.filer/css/themes/jquery.filer-dragdropbox-theme.css"
],
"js": [
"node_modules/jquery/dist/jquery.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js",
"node_modules/jquery-fleximages/jquery.flex-images.js",
"node_modules/jquery.filer/js/jquery.filer.js",
"node_modules/masonry-layout/dist/masonry.pkgd.js"
],
"fonts": [
"node_modules/bootstrap-sass/assets/fonts/bootstrap/*",
"assets/fonts/*"
],
"polyfills": [
"node_modules/html5shiv/dist/html5shiv.js",
"node_modules/respond.js/dest/respond.src.js"
]
},
"images": [
"assets/img/**/*"
],
"svg": [
"assets/svg/**/*"
],
"tasks": "./tasks/",
"assets": "assets/",
"iconsFontName": "icons",
"build": "build/",
"browsers": ["last 2 versions", "safari 5", "ie 8", "ie 9", "ff 27", "opera 12.1"],
"styleguide": {
"assets": "node_modules/fabricator/src/assets/fabricator/",
"layout": "default",
"layouts": "assets/templates/views/layouts/*",
"layoutIncludes": "assets/templates/views/layouts/includes/*",
"views": [
"assets/templates/**/*",
"!assets/templates/views/+(layouts)/**"
],
"materials": "assets/components/**/*",
"data": "assets/data/**/*.{json,yml}",
"docs": "assets/docs/**/*.md",
"dest": "styleguide"
}
}