From 9232f019e105616609dc914d1a4e260e778fc0a4 Mon Sep 17 00:00:00 2001 From: Eric Allam Date: Fri, 30 Jun 2023 11:29:25 +0100 Subject: [PATCH] Fixed a couple type errors in the @trigger.dev/cli --- packages/cli/src/commands/dev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/dev.ts b/packages/cli/src/commands/dev.ts index 8088d193a..40bfb66f8 100644 --- a/packages/cli/src/commands/dev.ts +++ b/packages/cli/src/commands/dev.ts @@ -86,7 +86,7 @@ export async function devCommand(path: string, anyOptions: any) { }; // Watch for changes to .ts files and refresh endpoints - chokidar.watch(resolvedPath).on("all", (event, path) => { + chokidar.watch(resolvedPath).on("all", (_event, _path) => { throttle(refresh, throttleTimeMs); }); }