We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
wake compile --import-json
1 parent 6967d46 commit 3b80993Copy full SHA for 3b80993
1 file changed
wake/cli/compile.py
@@ -130,6 +130,7 @@ async def compile(
130
)
131
}
132
else:
133
+ modified_files = {}
134
sol_files: Set[Path] = set()
135
start = time.perf_counter()
136
with console.status("[bold green]Searching for *.sol files...[/]"):
@@ -212,6 +213,7 @@ async def compile(
212
213
[SolcOutputSelectionEnum.ALL],
214
write_artifacts=not no_artifacts,
215
force_recompile=force,
216
+ modified_files=modified_files,
217
console=console,
218
no_warnings=no_warnings,
219
incremental=incremental,
0 commit comments