Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GabiGrin committed Aug 6, 2023
1 parent aacd7f2 commit e6e4b2d
Show file tree
Hide file tree
Showing 4 changed files with 153 additions and 154 deletions.
3 changes: 2 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ client.on("interactionCreate", async (interaction) => {

const execute = await loadFlow(command.handlerPath, currDir);

await execute({}, { extraContext: { interaction } }).result;
await execute({}, { extraContext: { interaction }, _debugger: undefined })
.result;

console.info(`Finished running command: ${interaction.commandName}`);
});
Expand Down
2 changes: 1 addition & 1 deletion nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
],
"ext": "ts,json,flyde,env",
"ignore": [],
"exec": "ts-node-esm ./index.ts"
"exec": "NODE_OPTIONS=\"--dns-result-order=ipv4first\" ts-node-esm ./index.ts"
}
Loading

0 comments on commit e6e4b2d

Please sign in to comment.