We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511a3bb commit c23b974Copy full SHA for c23b974
v-next/hardhat/src/internal/builtin-plugins/console/task-action.ts
@@ -46,6 +46,11 @@ const consoleAction: NewTaskActionFunction<ConsoleActionArguments> = async (
46
47
// Add the Hardhat Runtime Environment to the REPL context
48
replServer.context.hre = hre;
49
+ replServer.context.config = hre.config;
50
+ replServer.context.tasks = hre.tasks;
51
+ replServer.context.globalOptions = hre.globalOptions;
52
+ replServer.context.hooks = hre.hooks;
53
+ replServer.context.interruptions = hre.interruptions;
54
55
// Set up the REPL history file if the historyPath has been set
56
if (historyPath !== undefined) {
0 commit comments