@hyperlane-xyz/core 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@hyperlane-xyz/core",
3
3
  "description": "Core solidity contracts for Hyperlane",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "dependencies": {
6
- "@hyperlane-xyz/utils": "1.1.0",
6
+ "@hyperlane-xyz/utils": "1.1.1",
7
7
  "@openzeppelin/contracts": "^4.8.0",
8
8
  "@openzeppelin/contracts-upgradeable": "^4.8.0"
9
9
  },
@@ -45,12 +45,12 @@
45
45
  "scripts": {
46
46
  "build": "hardhat compile && tsc",
47
47
  "clean": "hardhat clean && rm -rf ./dist ./cache",
48
- "coverage": "hardhat coverage && forge coverage",
49
- "coverage-ci": "yarn coverage --report lcov",
48
+ "coverage": "./coverage.sh",
50
49
  "prettier": "prettier --write ./contracts ./interfaces ./test",
51
- "test": "hardhat test && forge test -vvv",
50
+ "test": "hardhat test && yarn test",
51
+ "test:forge": "forge test -vvv",
52
52
  "gas": "forge snapshot",
53
53
  "gas-ci": "yarn gas --check || (echo 'Manually update gas snapshot' && exit 1)"
54
54
  },
55
55
  "types": "dist/index.d.ts"
56
- }
56
+ }