This repository was archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.coffee
More file actions
48 lines (44 loc) · 1.62 KB
/
config.coffee
File metadata and controls
48 lines (44 loc) · 1.62 KB
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
exports.config =
# See http://brunch.readthedocs.org/en/latest/config.html for documentation.
files:
javascripts:
defaultExtension: 'coffee'
joinTo:
'javascripts/app.js': /^app/
'javascripts/vendor.js': /^vendor/
'test/javascripts/test.js': /^test(\/|\\)(?!vendor)/
'test/javascripts/test-vendor.js': /^test(\/|\\)(?=vendor)/
order:
before: [
'vendor/scripts/console-helper.js',
'vendor/scripts/jquery-1.7.2.js',
'vendor/scripts/underscore-1.3.3.js',
'vendor/scripts/backbone-0.9.2.js',
'vendor/scripts/modernizr-2.5.3.js',
'vendor/scripts/bootstrap/transition.js',
'vendor/scripts/bootstrap/alert.js',
'vendor/scripts/bootstrap/button.js',
'vendor/scripts/bootstrap/carousel.js',
'vendor/scripts/bootstrap/collapse.js',
'vendor/scripts/bootstrap/dropdown.js',
'vendor/scripts/bootstrap/modal.js',
'vendor/scripts/bootstrap/tooltip.js',
'vendor/scripts/bootstrap/popover.js',
'vendor/scripts/bootstrap/scrollspy.js',
'vendor/scripts/bootstrap/tab.js',
'vendor/scripts/bootstrap/typeahed.js'
]
stylesheets:
defaultExtension: 'styl'
joinTo:
'stylesheets/app.css': /^(app|vendor)/
'test/stylesheets/test.css': /^test/
order:
before: ['vendor/styles/style.less']
after: ['vendor/styles/helpers.css']
templates:
defaultExtension: 'hbs'
joinTo: 'javascripts/app.js'
paths:
ignored: /^vendor(\/|\\)styles(\/|\\)bootstrap/
framework: 'chaplin'