-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbrunch-config.js
80 lines (74 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
exports.config = {
// See http://brunch.io/#documentation for docs.
files: {
javascripts: {
joinTo: {
'js/app.js': /^(web\/static\/js)/,
'js/vendor.js': /^(web\/static\/vendor)/,
'js/bugsnag.js': /^(web\/static\/libraries\/bugsnag\.js)/
},
order: {
before: [
'web/static/vendor/js/sha256.js',
'web/static/vendor/js/lib-typedarrays-min.js',
]
},
pluginHelpers: 'js/vendor.js'
// To use a separate vendor.js bundle, specify two files path
// https://github.com/brunch/brunch/blob/stable/docs/config.md#files
// joinTo: {
// 'js/app.js': /^(web\/static\/js)/,
// 'js/vendor.js': /^(web\/static\/vendor)/
// }
//
// To change the order of concatenation of files, explictly mention here
// https://github.com/brunch/brunch/tree/stable/docs#concatenation
// order: {
// before: [
// 'web/static/vendor/js/jquery-2.1.1.js',
// 'web/static/vendor/js/bootstrap.min.js'
// ]
// }
},
stylesheets: {
joinTo: {
'css/libraries.css': /^(web\/static\/vendor\/css)/,
'css/app.css': /^(web\/static\/css)/
}
}
},
// Phoenix paths configuration
paths: {
// Which directories to watch
watched: ["web/static/js", "web/static/css", "web/static/vendor", "web/static/libraries", "test/static"],
// Where to compile files to
public: "priv/static"
},
modules: {
nameCleaner: function(path) {
return path.replace(/^web\/static\/js\//, '');
}
},
overrides: {
production: {
sourceMaps: true
}
},
// Configure your plugins
plugins: {
react: {
transformOptions: {
harmony: true,
sourceMap: false,
stripTypes: false
}
},
// if you use babel to transform jsx, transformOptions would be passed though to `babel.transform()`
// See: http://babeljs.io/docs/usage/options/
babel: {
// Do not use ES6 compiler in vendor code
ignore: [/^(web\/static\/vendor)/, /(react|reflux|react-router)\.js$/],
pattern: /\.(js|jsx)$/,
}
}
};