File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,10 @@ import 'hardhat-storage-layout'
8
8
import 'hardhat-contract-sizer'
9
9
import 'hardhat-secure-accounts'
10
10
11
- import './tasks/deploy'
12
-
13
11
// Skip importing hardhat-graph-protocol when building the project, it has circular dependency
14
12
if ( process . env . BUILD_RUN !== 'true' ) {
15
13
require ( 'hardhat-graph-protocol' )
14
+ require ( './tasks/deploy' )
16
15
}
17
16
18
17
export default hardhatBaseConfig
Original file line number Diff line number Diff line change @@ -10,11 +10,10 @@ import 'hardhat-contract-sizer'
10
10
import 'hardhat-secure-accounts'
11
11
import 'solidity-docgen'
12
12
13
- import './tasks/deploy'
14
-
15
13
// Skip importing hardhat-graph-protocol when building the project, it has circular dependency
16
14
if ( process . env . BUILD_RUN !== 'true' ) {
17
15
require ( 'hardhat-graph-protocol' )
16
+ require ( './tasks/deploy' )
18
17
}
19
18
20
19
const config : HardhatUserConfig = {
Original file line number Diff line number Diff line change 15
15
"lint:sol" : " prettier --write contracts/**/*.sol test/**/*.sol && solhint --noPrompt --fix contracts/**/*.sol --config node_modules/solhint-graph-config/index.js" ,
16
16
"lint" : " yarn lint:ts && yarn lint:sol" ,
17
17
"clean" : " rm -rf build dist cache cache_forge typechain-types" ,
18
- "build" : " forge build --skip test && BUILD_RUN=true hardhat compile" ,
18
+ "build" : " BUILD_RUN=true hardhat compile" ,
19
19
"test" : " forge test && hardhat test"
20
20
},
21
21
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments