Skip to content

Commit

Permalink
chore(amm,flash-swap,protocol): fix solidity-coverage bug
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Feb 2, 2022
1 parent 9b55675 commit a3c2f7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/amm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./coverage.json ./docs ./tsconfig.prod.tsbuildinfo",
"clean:node_modules": "shx rm -rf ./node_modules",
"compile:sol": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\"",
"generate:docs": "solidity-docgen --input contracts --output docs --solc-module solc --templates ../../templates && yarn prettier",
"generate:types": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
Expand Down
2 changes: 1 addition & 1 deletion packages/flash-swap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./coverage.json ./docs ./tsconfig.prod.tsbuildinfo",
"clean:node_modules": "shx rm -rf ./node_modules",
"compile:sol": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\"",
"generate:types": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:sol": "solhint --config ./.solhint.json --ignore-path ../../.solhintignore --max-warnings 0 \"contracts/**/*.sol\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"clean": "shx rm -rf ./artifacts ./cache ./coverage.json ./docs ./tsconfig.prod.tsbuildinfo",
"clean:node_modules": "shx rm -rf ./node_modules",
"compile:sol": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/{unit,integration}/**/*.ts\"",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/{unit,integration}/**/*.ts\"",
"generate:docs": "solidity-docgen --input contracts --output docs --solc-module solc --templates ../../templates && yarn prettier",
"generate:types": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
Expand Down

0 comments on commit a3c2f7f

Please sign in to comment.