forked from chrisharrington/react-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrunch-config.js
38 lines (36 loc) · 826 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
module.exports.config = {
files: {
javascripts: {
joinTo: {
"js/app.js": /^app/,
"js/vendor.js": /^(?!app)/
},
order: {
before: [
"bower_components/jquery/dist/jquery.js",
"bower_components/underscore/underscore.js",
"bower_components/react/react.js"
]
}
},
stylesheets: {
joinTo: "css/app.css"
},
templates: {
joinTo: "js/app.js"
}
},
plugins: {
react: {
autoIncludeCommentBlock: true,
harmony: true
},
reactTags: {
verbose: true
}
},
server: {
port: 3333,
run: true
}
};