forked from imcu/hooked-web3-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
33 lines (30 loc) · 866 Bytes
/
truffle.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
module.exports = {
"build": {
// The main library file.
"hooked-web3-provider.js": "hooked-web3-provider.es6",
// Note, the first one will be processed before this one,
// so we can refer to the built file.
"hooked-web3-provider.min.js": {
"files": [
"../build/hooked-web3-provider.js"
],
"post-process": [
"uglify"
]
},
// The next two are for testing.
"app.js": [
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/bignumber.js/bignumber.js",
"../node_modules/ethereumjs-accounts/dist/ethereumjs-accounts.js",
"hooked-web3-provider.es6"
],
"index.html": "index.html"
},
"deploy": [],
"rpc": {
// Default RPC configuration.
"host": "localhost",
"port": 8545
}
};