-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.coffee
37 lines (32 loc) · 865 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 =
modules:
definition: false
wrapper: (path, data) ->
"""
(function() {
'use strict';
#{data}
}).call(this);
"""
paths:
public: '../../www/'
watched: [
'site'
'vendor'
]
files:
javascripts:
joinTo:
'js/site.js': /^(site|vendor)/
before: [
'vendor/scripts/console-helper.js'
'vendor/scripts/jquery-1.8.3.js'
]
stylesheets:
joinTo:
'css/site.css': /^(site|vendor)/
'css/ie.css': /^site\/styles\/ie/
templates:
joinTo:
'js/site.js'
sourceMaps: false