-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmimosa-config.coffee
74 lines (62 loc) · 1.82 KB
/
mimosa-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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
exports.config =
modules: [
"copy"
"server"
"jshint"
"csslint"
"browserify"
"minify-js"
"minify-css"
"live-reload"
"bower"
"livescript"
"stylus"
"html-templates"
]
template:
wrapType: "common"
nameTransform: (path)->
path.match(/template\/(.*)$/)[1]
htmlTemplates:
extensions: ["html"]
watch:
exclude: [/[/\\](\.|~)[^/\\]+$/, /~$/, /#$/, /^\.#/]
server:
path: "server.ls"
views:
compileWith: "html"
extension: "html"
defaultServer:
enabled: true
browserify:
bundles:
[
entries: ["javascripts/main.js"]
outputFile: "bundle.js"
]
shims:
jquery:
path: "javascripts/vendor/jquery/jquery"
exports: "$"
pouchdb:
path: "javascripts/vendor/pouchdb/pouchdb-nightly"
exports: "PouchDB"
d3:
path: "javascripts/vendor/d3/d3"
exports: "d3"
aliases:
"prelude-ls": "javascripts/vendor/prelude-ls/index"
templates: "javascripts/templates"
pouchdb: "javascripts/vendor/pouchdb/pouchdb-nightly"
angular: "javascripts/vendor/angular/angular"
"angular-pouchdb": "javascripts/vendor/angular-pouchdb/angular-pouchdb"
"angular-route": "javascripts/vendor/angular-route/angular-route"
"angular-bootstrap": "javascripts/vendor/angular-bootstrap/ui-bootstrap-tpls"
noParse: [
"javascripts/vendor/d3/d3"
"javascripts/vendor/prelude-ls/index"
"javascripts/vendor/jquery/jquery"
"javascripts/vendor/angular/angular"
"javascripts/vendor/angular-route/angular-route"
"javascripts/vendor/angular-bootstrap/ui-bootstrap-tpls"
]