-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.coffee
executable file
·37 lines (30 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
32
33
34
35
36
37
exports.config =
framework: 'backbone'
paths:
public: 'public'
files:
javascripts:
defaultExtension: 'js'
joinTo:
'javascripts/app.js': /^app/
'javascripts/vendor.js': /^(vendor|bower_components)/
'test/javascripts/test.js': /^test[\\/](?!vendor)/
'test/javascripts/test-vendor.js': /^test[\\/](?=vendor)/
order:
after: [
# popover requires tooltip
'vendor/scripts/bootstrap/tooltip.js'
'vendor/scripts/bootstrap/popover.js'
# collapse requires transitions
'vendor/scripts/bootstrap/collapse.js'
'vendor/scripts/bootstrap/transition.js'
'test/vendor/scripts/test-helper.js'
]
stylesheets:
defaultExtension: 'less'
joinTo:
'stylesheets/app.css': /^(app|vendor)/
'test/stylesheets/test.css': /^test/
templates:
defaultExtension: 'hbs'
joinTo: 'javascripts/app.js'