Skip to content

Commit

Permalink
Merge 8700678 into 378ad81
Browse files Browse the repository at this point in the history
  • Loading branch information
sohkai committed Sep 11, 2020
2 parents 378ad81 + 8700678 commit 23389f6
Show file tree
Hide file tree
Showing 5 changed files with 1,072 additions and 33 deletions.
4 changes: 4 additions & 0 deletions apps/agreement/buidler.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ const { usePlugin } = require('@nomiclabs/buidler/config')

usePlugin("@nomiclabs/buidler-ganache")
usePlugin('@nomiclabs/buidler-truffle5')
usePlugin('@aragon/buidler-aragon')
usePlugin('buidler-gas-reporter')
usePlugin('solidity-coverage')

const ACCOUNTS = (process.env.ETH_KEYS ? process.env.ETH_KEYS.split(',') : [])
.map(key => key.trim())

module.exports = {
aragon: {
appBuildOutputPath: 'public/',
},
networks: {
// Local development network using ganache. You can set any of the
// Ganache's options. All of them are supported, with the exception
Expand Down
2 changes: 2 additions & 0 deletions apps/agreement/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@
"@aragon/staking": "0.3.1"
},
"devDependencies": {
"@aragon/buidler-aragon": "^0.2.9",
"@aragon/contract-helpers-test": "^0.1.0",
"@aragon/minime": "1.0.0",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-etherscan": "^1.3.0",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
Expand Down
4 changes: 4 additions & 0 deletions apps/voting-disputable/buidler.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ const { usePlugin } = require('@nomiclabs/buidler/config')

usePlugin("@nomiclabs/buidler-ganache")
usePlugin('@nomiclabs/buidler-truffle5')
usePlugin('@aragon/buidler-aragon')
usePlugin('buidler-gas-reporter')
usePlugin('solidity-coverage')

const ACCOUNTS = (process.env.ETH_KEYS ? process.env.ETH_KEYS.split(',') : [])
.map(key => key.trim())

module.exports = {
aragon: {
appBuildOutputPath: 'app/public/',
},
networks: {
// Local development network using ganache. You can set any of the
// Ganache's options. All of them are supported, with the exception
Expand Down
2 changes: 2 additions & 0 deletions apps/voting-disputable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@
},
"devDependencies": {
"@aragon/apps-agreement": "1.0.0-rc.0",
"@aragon/buidler-aragon": "^0.2.9",
"@aragon/contract-helpers-test": "^0.1.0",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-etherscan": "^1.3.0",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
Expand Down

0 comments on commit 23389f6

Please sign in to comment.