(regression) fix: remove invalid envFile response field in sendEvent cmd (#577)

* fix: remove invalid envFile response field in sendEvent cmd

* add changeset
This commit is contained in:
Hemachandar
2023-10-06 21:25:26 +05:30
committed by GitHub
parent a7bc5df754
commit b12bc6042f
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@trigger.dev/cli": patch
---
remove unused envFile param in sendEvent.ts cmd
+1 -1
View File
@@ -36,7 +36,7 @@ export async function sendEventCommand(path: string, anyOptions: any) {
return;
}
const { apiUrl, envFile, apiKey } = apiDetails;
const { apiUrl, apiKey } = apiDetails;
const parsedPayload = safeJSONParse(options.payload);