-
Notifications
You must be signed in to change notification settings - Fork 1
/
brunch-config.coffee
34 lines (32 loc) · 1.28 KB
/
brunch-config.coffee
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
exports.config =
plugins:
sass:
mode:'native'
options:
includePaths: ["bower_components/compass-mixins/lib/"]
conventions:
assets: /^app\/assets\//
paths:
public: '_public'
plugins:
sass:
options: ['--compass']
files:
javascripts:
joinTo:
'js/vendor.js': /^bower_components/
'js/app.js': /^app\/scripts/
order:
before: [
'bower_components/jquery/dist/jquery.js'
'bower_components/angular/angular.js'
]
stylesheets:
joinTo:
'css/vendor.css': /^bower_components/
'css/app.css': /^app\/styles/
order:
before: [
'bower_components/bootstrap/dist/css/bootstrap.css'
'bower_components/bootstrap/dist/css/bootstrap-theme.css'
]