forked from phoenixframework/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brunch-config.js
49 lines (43 loc) · 1.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
exports.config = {
sourceMaps: false,
production: true,
modules: {
definition: false,
// The wrapper for browsers in a way that:
//
// 1. Phoenix.Socket, Phoenix.Channel and so on are available
// 2. the exports variable does not leak
// 3. the Socket, Channel variables and so on do not leak
wrapper: function(path, code){
return "(function (global, factory) {\n"
+ "typeof exports === 'object' ? factory(exports) :\n"
+ "typeof define === 'function' && define.amd ? define(['exports'], factory) :\n"
+ "factory(global.Phoenix = global.Phoenix || {});\n"
+ "}(this, (function (exports) {\n"
+ code
+ "\n})));";
}
},
files: {
javascripts: {
joinTo: 'phoenix.js'
},
},
conventions: {
assets: /^(static)/
},
// Phoenix paths configuration
paths: {
// Which directories to watch
watched: ["assets/js"],
// Where to compile files to
public: "priv/static"
},
// Configure your plugins
plugins: {
babel: {
// Do not use ES6 compiler in vendor code
ignore: [/^(assets\/vendor)/]
}
}
};