-
Notifications
You must be signed in to change notification settings - Fork 0
/
mimosa-config.js
66 lines (66 loc) · 1.24 KB
/
mimosa-config.js
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
exports.config = {
modules: [
"server",
"browserify",
"jshint",
"live-reload",
"bower",
"stylus",
"html-templates",
"copy"
],
template: {
wrapType: 'common'
},
browserify: {
bundles: [
{
entries: ['javascripts/main.js'],
outputFile: 'bundle.js'
}
],
shims: {
jquery: {
path: 'javascripts/vendor/jquery-2.1.1.min.js',
exports: '$'
},
angular: {
path: 'javascripts/vendor/angular.min.js',
exports: 'angular'
},
uirouter: {
path: 'javascripts/vendor/angular-ui-router.min.js',
exports: 'uirouter'
},
bootstrap: {
path: 'javascripts/vendor/bootstrap.min.js',
exports: 'bootstrap'
},
uibootstrap: {
path: 'javascripts/vendor/ui-bootstrap-tpls-0.11.0.min.js',
exports: 'uibootstrap'
}
},
aliases: {
templates: 'javascripts/templates'
}
},
htmlTemplates: {
extensions: ["template"]
},
server: {
path: 'server.js',
defaultServer: {
enabled: false
},
views: {
engines: {
jade: require('jade')
},
path: 'views',
compileOptions: {
pretty: true
}
}
}
};