-
Notifications
You must be signed in to change notification settings - Fork 30
/
config.yml
95 lines (92 loc) · 3.65 KB
/
config.yml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Your project's server will run on localhost:xxxx at this port
PORT: 8000
# Autoprefixer will make sure your CSS works with these browsers
COMPATIBILITY:
- "last 2 versions"
- "ie >= 9"
- "ios >= 7"
# UnCSS will use these settings
UNCSS_OPTIONS:
html:
- "src/**/*.html"
ignore:
- !!js/regexp .foundation-mq
- !!js/regexp ^\.is-.*
# Gulp will reference these paths when it copies files
PATHS:
# Path to dist folder
dist: "dist"
build: "_build"
# Paths to static assets that aren't images, CSS, or JavaScript
# DON'T ADD TO
assets:
- "src/assets/**/*"
- "!src/assets/{img,js,scss}/**/*"
# Paths to building-block source files
bb:
sass: 'src/building-blocks/**/*.scss'
js: 'src/building-blocks/**/*.js'
html: 'src/building-blocks/**/*.html'
png: 'src/building-blocks/**/*.png'
yaml: 'src/building-blocks/**/*.yml'
# Paths to kit source files
kit:
png: 'src/kits/**/*.png'
yaml: 'src/kits/**/*.yml'
img: 'src/kits/**/*.{png,jpg}'
# pages
pages:
dir: 'src/pages/'
html: 'src/pages/**/*.html'
markup: 'src/pages/**/*.{html,hbs,handlebars}'
# layouts
layouts:
dir: 'src/layouts/'
# partials
partials:
dir: 'src/partials/'
# Paths to Sass libraries, which can then be loaded with @import
sass:
- "node_modules/highlight.js/"
- "bower_components/foundation-sites/scss"
- "bower_components/motion-ui/src"
- "bower_components/jssocials/dist/"
# Paths to JavaScript libraries, which are combined into one file
javascript:
# Libraries required by Foundation
- "bower_components/jquery/dist/jquery.js"
- "bower_components/what-input/dist/what-input.js"
# Core Foundation files
- "bower_components/foundation-sites/js/foundation.core.js"
- "bower_components/foundation-sites/js/foundation.util.*.js"
# Individual Foundation components
# If you aren't using a component, just remove it from the list
- "bower_components/foundation-sites/js/foundation.abide.js"
- "bower_components/foundation-sites/js/foundation.accordion.js"
- "bower_components/foundation-sites/js/foundation.accordionMenu.js"
- "bower_components/foundation-sites/js/foundation.drilldown.js"
- "bower_components/foundation-sites/js/foundation.dropdown.js"
- "bower_components/foundation-sites/js/foundation.dropdownMenu.js"
- "bower_components/foundation-sites/js/foundation.equalizer.js"
- "bower_components/foundation-sites/js/foundation.interchange.js"
- "bower_components/foundation-sites/js/foundation.magellan.js"
- "bower_components/foundation-sites/js/foundation.offcanvas.js"
- "bower_components/foundation-sites/js/foundation.orbit.js"
- "bower_components/foundation-sites/js/foundation.responsiveMenu.js"
- "bower_components/foundation-sites/js/foundation.responsiveToggle.js"
- "bower_components/foundation-sites/js/foundation.reveal.js"
- "bower_components/foundation-sites/js/foundation.slider.js"
- "bower_components/foundation-sites/js/foundation.sticky.js"
- "bower_components/foundation-sites/js/foundation.tabs.js"
- "bower_components/foundation-sites/js/foundation.toggler.js"
- "bower_components/foundation-sites/js/foundation.tooltip.js"
- "bower_components/foundation-sites/js/foundation.zf.responsiveAccordionTabs.js"
- "bower_components/jssocials/dist/jssocials.min.js"
- "node_modules/svg-injector/svg-injector.js"
- "node_modules/clipboard/dist/clipboard.js"
- "node_modules/handlebars/dist/handlebars.min.js"
- "node_modules/lodash/lodash.min.js"
# Paths to your own project code are here
- "src/assets/js/utils/*.js"
- "src/assets/js/!(app).js"
- "src/assets/js/app.js"