Skip to content

Commit

Permalink
chore: fix solidity-coverage in apps (aragon#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
sohkai authored Apr 25, 2019
1 parent 13f3221 commit a8245e5
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 9 deletions.
2 changes: 2 additions & 0 deletions apps/agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
"@aragon/test-helpers": "^1.1.0",
"eth-gas-reporter": "^0.1.1",
"ethereumjs-util": "^6.1.0",
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1",
Expand Down
2 changes: 2 additions & 0 deletions apps/finance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
"@aragon/cli": "^5.6.0",
"@aragon/test-helpers": "^1.1.0",
"eth-gas-reporter": "^0.1.1",
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
Expand Down
2 changes: 2 additions & 0 deletions apps/survey/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
"@aragon/cli": "^5.6.0",
"@aragon/test-helpers": "^1.1.0",
"eth-gas-reporter": "^0.1.1",
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
Expand Down
2 changes: 2 additions & 0 deletions apps/token-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
"@aragon/cli": "^5.6.0",
"@aragon/test-helpers": "^1.1.0",
"eth-gas-reporter": "^0.1.1",
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
Expand Down
2 changes: 2 additions & 0 deletions apps/vault/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
"@aragon/test-helpers": "^1.1.0",
"eth-ens-namehash": "^2.0.8",
"eth-gas-reporter": "^0.1.1",
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
Expand Down
2 changes: 2 additions & 0 deletions apps/voting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
"@aragon/cli": "^5.6.0",
"@aragon/test-helpers": "^1.1.0",
"eth-gas-reporter": "^0.1.5",
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"solidity-sha3": "^0.4.1",
"solium": "^1.2.3",
"truffle": "4.1.14",
Expand Down
19 changes: 10 additions & 9 deletions future-apps/payroll/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,18 @@
"test": "TRUFFLE_TEST=true npm run ganache-cli:test",
"test:gas": "GAS_REPORTER=true npm test",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"truffle:dev": "node_modules/.bin/truffle dev",
"truffle:dev": "truffle dev",
"ganache-cli:test": "./node_modules/@aragon/test-helpers/ganache-cli.sh",
"prepare": "npx apps-shared-scripts-prepare",
"install:frontend": "cd app && npm install",
"prepublishOnly": "truffle compile --all"
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"files": [
"/abi",
"/arapp.json",
"/build",
"/contracts",
"/scripts",
"/test"
],
"dependencies": {
Expand All @@ -49,12 +50,12 @@
"@aragon/apps-shared-scripts": "^1.0.0",
"@aragon/apps-vault": "4.0.0",
"@aragon/cli": "^5.1.0",
"@aragon/test-helpers": "^1.0.1",
"@aragon/test-helpers": "^1.1.0",
"eth-gas-reporter": "^0.1.12",
"ganache-cli": "^6.0.3",
"ethereumjs-abi": "^0.6.5",
"solidity-coverage": "0.5.11",
"solium": "^1.1.8",
"truffle": "4.1.14"
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
}
}
4 changes: 4 additions & 0 deletions shared/test-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"*.sh",
"/contracts"
],
"peerDependencies": {
"ganache-cli": "^6.0.0",
"solidity-coverage": "^0.5.11"
},
"devDependencies": {
"ethereumjs-abi": "^0.6.4"
}
Expand Down

0 comments on commit a8245e5

Please sign in to comment.