-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulp_config.json
64 lines (64 loc) · 2.31 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
54
55
56
57
58
59
60
61
62
63
64
{
"app": {
"env": "dev",
"basedir": "styleguide",
"ghpages": "styleguide"
},
"vendors": {
"css": [
"node_modules/tablesaw/dist/bare/tablesaw.bare.css",
"node_modules/select2/dist/css/select2.css"
],
"js": [
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/affix.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/button.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/carousel.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/collapse.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/modal.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/popover.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/tab.js",
"node_modules/bootstrap-sass/assets/javascripts/bootstrap/transition.js",
"node_modules/jquery-focuspoint/js/jquery.focuspoint.js",
"node_modules/tablesaw/dist/tablesaw.js",
"node_modules/tablesaw/dist/tablesaw-init.js",
"node_modules/select2/dist/js/select2.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": "ehnvicon",
"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"
}
}