-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.coffee
59 lines (57 loc) · 2.01 KB
/
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
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
# vim: ai:et:sts=2:ts=2:sw=2
exports.config =
# See http://brunch.readthedocs.org/en/latest/config.html for documentation.
modules:
definition: false
wrapper: false
paths:
public: "_public/"
files:
javascripts:
joinTo:
'js/app.js': /^app/
'js/vendor.js': /^vendor(?:\/|\\)[^_]/
'test/javascripts/test.js': /^test(\/|\\)(?!vendor)/
'test/javascripts/test-vendor.js': /^test(\/|\\)(?=vendor)/
order:
before: [
'vendor/scripts/jquery/jquery-1.9.1.js'
'vendor/scripts/angular/angular.js'
'vendor/angularui/angular-ui.js'
'vendor/angularui/angular-ui-ieshiv.js'
'vendor/scripts/bootstrap/bootstrap-transition.js'
'vendor/scripts/bootstrap/bootstrap-alert.js'
'vendor/scripts/bootstrap/bootstrap-button.js'
'vendor/scripts/bootstrap/bootstrap-carousel.js'
'vendor/scripts/bootstrap/bootstrap-collapse.js'
'vendor/scripts/bootstrap/bootstrap-dropdown.js'
'vendor/scripts/bootstrap/bootstrap-modal.js'
'vendor/scripts/bootstrap/bootstrap-tooltip.js'
'vendor/scripts/bootstrap/bootstrap-popover.js'
'vendor/scripts/bootstrap/bootstrap-scrollspy.js'
'vendor/scripts/bootstrap/bootstrap-tab.js'
'vendor/scripts/bootstrap/bootstrap-typeahead.js'
'vendor/scripts/bootstrap/bootstrap-affix.js'
'vendor/angularbs/ui-bootstrap-tpls-0.1.0.js'
'app/scripts/init.coffee'
'app/scripts/routes.coffee'
'app/scripts/controllers/*'
'app/scripts/directives/*'
'app/scripts/factories/*'
]
after: []
stylesheets:
joinTo:
'css/app.css': /^(app|vendor)(?:\/|\\)[^_]/
'test/stylesheets/test.css': /^test/
order:
before: [
'vendor/styles/bootstrap.less'
'vendor/styles/bootstrap-responsive.less'
]
after: []
templates:
joinTo: 'js/templates.js'
plugins:
jade:
pretty: yes