-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrunch-config.js
49 lines (47 loc) · 940 Bytes
/
brunch-config.js
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
module.exports = {
npm: {
globals: {
'jQuery': 'jquery',
'$': 'jquery'
},
static: [
'node_modules/what-input/what-input.js',
'node_modules/foundation-sites/dist/foundation.js'
]
},
files: {
javascripts: {
joinTo: {
'assets/js/vendor.js': /^(?!app)/,
'assets/js/app.js': /(^app)/
},
order: {
after: [
'node_modules/what-input/what-input.js',
'node_modules/foundation-sites/dist/foundation.js'
]
}
},
stylesheets: {
joinTo: '/assets/css/app.css'
}
},
plugins: {
babel: {
presets: ['es2015']
},
sass: {
options: {
includePaths: [
'node_modules/foundation-sites/scss',
'node_modules/motion-ui/src'
]
}
},
postcss: {
processors: [
require('autoprefixer')(['last 8 versions','ie >= 9'])
]
}
}
};