-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.coffee
44 lines (39 loc) · 1.31 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
exports.config =
paths:
public: 'public'
files:
javascripts:
defaultExtension: 'coffee'
joinTo:
'static/js/app.js': /^app/
'static/js/vendor.js': /^vendor/
order:
before: [
'vendor/scripts/console-helper.js'
'vendor/scripts/jquery-1.7.1.js'
'vendor/scripts/jquery-ui-1.8.20.js'
'vendor/scripts/jquery.blockui.js'
'vendor/scripts/underscore-1.3.1.js'
'vendor/scripts/chosen.jquery.js'
'vendor/scripts/date.js'
'vendor/scripts/backbone-0.9.1.js'
]
stylesheets:
defaultExtension: 'styl'
joinTo: 'static/css/app.css'
order:
before: [
'vendor/styles/normalize.css'
'vendor/styles/jquery-ui-1.8.20.css'
'vendor/styles/chosen.css'
'vendor/styles/bootstrap.css'
]
after: ['vendor/styles/helpers.css']
templates:
defaultExtension: 'hbs'
joinTo: 'static/js/app.js'
minify: no
server:
path: 'server.coffee'
port: 3334
base: ''