forked from phoenixframework/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brunch-config.js
38 lines (35 loc) · 948 Bytes
/
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
exports.config = {
// See http://brunch.io/#documentation for docs.
sourceMaps: false,
production: true,
modules: {
// use common js wrapper, but expose global `Phoenix` object for browser
// truncate module path simple to "phoenix"
wrapper: function(path, data){
return(
"require.define({'phoenix': function(exports, require, module){ " + data + " }});\n" +
"if(typeof(window) === 'object' && !window.Phoenix){ window.Phoenix = require('phoenix') };"
)
}
},
files: {
javascripts: {
joinTo: 'phoenix.js'
},
},
// Phoenix paths configuration
paths: {
// Which directories to watch
watched: ["web/static", "test/static"],
// Where to compile files to
public: "priv/static"
},
// Configure your plugins
plugins: {
ES6to5: {
// Do not use ES6 compiler in vendor code
ignore: [/^(web\/static\/vendor)/],
loose: "all"
}
}
};