forked from jkbrzt/cloudtunes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.coffee
49 lines (40 loc) · 1.21 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
###
Docs:
https://github.com/brunch/brunch/blob/stable/docs/config.md
Defaults:
https://github.com/brunch/brunch/blob/master/src/helpers.coffee#L197
###
exports.config =
# conventions:
# ignored: (path)->
# ignore = path.indexOf('artials/_') > -1
# console.log ignore, path
# ignore
# no
paths:
'public': 'build/development'
plugins:
sass:
debug: 'comments'
files:
javascripts:
joinTo:
'cloudtunes.js': /^app/
'vendor.js': /^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.js',
'vendor/scripts/underscore.js',
'vendor/scripts/backbone.js'
]
stylesheets:
joinTo: 'cloudtunes.css'
order:
before: [
'vendor/styles/normalize-1.0.0.css'
]
templates:
joinTo: 'cloudtunes.js'