forked from cozy-labs/konnectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.coffee
executable file
·32 lines (29 loc) · 1.03 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
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.9.1.js'
'vendor/scripts/underscore-1.4.4.js'
'vendor/scripts/backbone-1.0.0.js'
]
stylesheets:
joinTo: 'stylesheets/app.css'
order:
before: ['vendor/styles/normalize.css']
after: ['vendor/styles/helpers.css']
templates:
defaultExtension: 'jade'
joinTo: 'javascripts/app.js'