-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.coffee
executable file
·31 lines (28 loc) · 1009 Bytes
/
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
exports.config =
# See docs at http://brunch.readthedocs.org/en/latest/config.html.
coffeelint:
pattern: /^app\/.*\.coffee$/
options:
indentation:
value: 4
level: "error"
files:
javascripts:
joinTo:
'javascripts/app.js': /^app/
'javascripts/vendor.js': /^vendor/
order:
# Files in `vendor` directories are compiled before other files
# even if they aren't specified in order.
before: [
'vendor/scripts/jquery-1.8.0.js'
'vendor/scripts/lodash-v0.5.0-rc.1.js'
'vendor/scripts/backbone-0.9.2.js'
]
stylesheets:
joinTo: 'stylesheets/app.css'
order:
before: ['vendor/styles/normalize.css']
after: ['vendor/styles/helpers.css']
templates:
joinTo: 'javascripts/app.js'