forked from Lundalogik/LimeBootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brunch-config.js
57 lines (51 loc) · 1.09 KB
/
brunch-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
exports.files = {
javascripts: {
entryPoints: {
'src/entry.js': {
'system/js/lbs.js': /entry.js|^src\/lib|^src\/components/,
'system/js/vendor.js': /node_modules/,
},
},
order: {
before: /jquery-/,
},
},
stylesheets: {
joinTo: {
'system/css/lbs.css': /\.[s]?css/,
},
},
templates: { joinTo: 'system/js/templates.js' },
}
exports.paths = {
watched: ['src'],
public: 'dist',
}
module.exports.plugins = {
sass: {},
raw: {
pattern: /\.(tpl.html)$/,
},
babel: {
babelrc: true,
},
}
exports.conventions = {
ignored: () => false, // override defaults for no ignored files
}
exports.npm = {
globals: {
moment: 'moment',
$: 'jquery',
jQuery: 'jquery',
ko: 'knockout',
'ko.mapping': 'knockout-mapping',
'ko.punches': 'knockout-punches',
_: 'underscore',
},
}
exports.server = {
// hostname: '0.0.0.0',
indexPath: 'lbs.html',
}
exports.sourceMaps = 'inline'