-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.coffee
33 lines (31 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
33
exports.config =
files:
javascripts:
joinTo:
'javascripts/app.js': /^app/
'javascripts/vendor.js': /^vendor/
'test/javascripts/test.js': /^test(\/|\\)(?!vendor)/
'test/javascripts/test-vendor.js': /^test(\/|\\)(?=vendor)/
order:
# Files in `vendor` directories are compiled before other files
# even if they aren't specified in order.before.
before: [
'vendor/scripts/console-helper.js',
'vendor/scripts/jquery-1.8.2.js',
'vendor/scripts/jquery.iecors.js',
'vendor/scripts/underscore-1.4.0.js',
'vendor/scripts/backbone-0.9.2.js',
'vendor/scripts/bootstrap.js'
]
stylesheets:
joinTo:
'stylesheets/app.css': /^(app|vendor)/
'test/stylesheets/test.css': /^test/
order:
before: [
'vendor/styles/bootstrap.css',
'vendor/styles/bootstrap-responsize.css'
]
after: ['vendor/styles/helpers.css']
templates:
joinTo: 'javascripts/app.js'