Removed a console.log when a user’s file is changed that CLI dev is listening for
🚀 Publish Trigger.dev Docker / ʦ TypeScript (push) Has been cancelled
🚀 Publish Trigger.dev Docker / Unit Tests (push) Has been cancelled
🚀 Publish Trigger.dev Docker / e2e Tests (push) Has been cancelled
🚀 Publish Trigger.dev Docker / publish (push) Has been cancelled

This commit is contained in:
Matt Aitken
2023-10-05 16:49:06 +01:00
parent 9189bdf50f
commit 914745f642
2 changed files with 5 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@trigger.dev/cli": patch
---
Removed log when a file is changed
-1
View File
@@ -196,7 +196,6 @@ export async function devCommand(path: string, anyOptions: any) {
});
watcher.on("all", (_event, _path) => {
console.log(_event, _path);
throttle(refresh, throttleTimeMs);
});