forked from brunch/simple-js-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.coffee
29 lines (27 loc) · 813 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
exports.config =
# See docs at http://brunch.readthedocs.org/en/latest/config.html.
files:
javascripts:
defaultExtension: 'js'
joinTo:
'js/app.js': /^app/
'js/vendor.js': /^vendor/
'test/js/test.js': /^test(\/|\\)(?!vendor)/
order:
before: [
'vendor/scripts/console-helper.js',
'vendor/scripts/jquery.js',
'vendor/scripts/json2.js',
'vendor/scripts/underscore.js',
'vendor/scripts/backbone.js',
'vendor/scripts/rivets.js'
]
stylesheets:
defaultExtension: 'styl'
joinTo: 'stylesheets/app.css'
order:
before: ['vendor/styles/normalize.css']
after: ['vendor/styles/helpers.css']
templates:
defaultExtension: 'hbs'
joinTo: 'js/app.js'