Fixed a couple type errors in the @trigger.dev/cli

This commit is contained in:
Eric Allam
2023-06-30 11:29:25 +01:00
parent ac371664af
commit 9232f019e1
+1 -1
View File
@@ -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);
});
}