Commit 7d7fd7f 1 parent 50d8fb5 commit 7d7fd7f Copy full SHA for 7d7fd7f
File tree 1 file changed +8
-2
lines changed
v-next/hardhat/src/internal/builtin-plugins/solidity/build-system
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,10 @@ import debug from "debug";
36
36
import pMap from "p-map" ;
37
37
38
38
import { FileBuildResultType } from "../../../../types/solidity/build-system.js" ;
39
- import { DEFAULT_BUILD_PROFILE , shouldMergeCompilationJobs } from "../build-profiles.js" ;
39
+ import {
40
+ DEFAULT_BUILD_PROFILE ,
41
+ shouldMergeCompilationJobs ,
42
+ } from "../build-profiles.js" ;
40
43
41
44
import {
42
45
getArtifactsDeclarationFile ,
@@ -334,7 +337,10 @@ export class SolidityBuildSystemImplementation implements SolidityBuildSystem {
334
337
subgraphsWithConfig . push ( [ configOrError , subgraph ] ) ;
335
338
}
336
339
337
- if ( options ?. mergeCompilationJobs ?? shouldMergeCompilationJobs ( buildProfileName ) ) {
340
+ if (
341
+ options ?. mergeCompilationJobs ??
342
+ shouldMergeCompilationJobs ( buildProfileName )
343
+ ) {
338
344
log ( `Merging compilation jobs` ) ;
339
345
340
346
const mergedSubgraphsByConfig : Map <
You can’t perform that action at this time.
0 commit comments