commit
3da887e56e
@ -1,21 +1,27 @@ |
||||
dist |
||||
npm-debug.log |
||||
node_modules |
||||
temp |
||||
.tmp |
||||
.sass-cache |
||||
package-lock.json |
||||
|
||||
app/bower_components |
||||
test/bower_components |
||||
package |
||||
|
||||
temp |
||||
.tmp |
||||
.sass-cache |
||||
.DS_Store |
||||
app/.DS_Store |
||||
|
||||
dist |
||||
builds/ |
||||
disc/ |
||||
notes.txt |
||||
app/.DS_Store |
||||
development/bundle.js |
||||
builds.zip |
||||
test/integration/bundle.js |
||||
|
||||
development/bundle.js |
||||
development/states.js |
||||
test/integration/bundle.js |
||||
test/background.js |
||||
test/bundle.js |
||||
test/test-bundle.js |
||||
|
||||
notes.txt |
@ -1,12 +1,15 @@ |
||||
// test and development environment variables
|
||||
const env = process.env.METAMASK_ENV |
||||
const METAMASK_DEBUG = 'GULP_METAMASK_DEBUG' |
||||
|
||||
//
|
||||
// The default state of MetaMask
|
||||
//
|
||||
|
||||
module.exports = { |
||||
config: {}, |
||||
NetworkController: { |
||||
provider: { |
||||
type: 'rinkeby', |
||||
type: (METAMASK_DEBUG || env === 'test') ? 'rinkeby' : 'mainnet', |
||||
}, |
||||
}, |
||||
} |
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue