Skip to content

Commit

Permalink
fix: Lint for type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
matvp91 committed Nov 7, 2024
1 parent 05e0f15 commit f142932
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Binary file modified bun.lockb
Binary file not shown.
1 change: 0 additions & 1 deletion packages/artisan/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"iso-language-codes": "^2.0.0",
"mime-types": "^2.1.35",
"parse-filepath": "^1.0.2",
"pretty-print-error": "^1.1.2",
"s3-sync-client": "^4.3.1",
"shared": "workspace:*"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/bolt/src/worker.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { WaitingChildrenError, Worker } from "bullmq";
import { formatError } from "pretty-print-error";
import { assert } from "shared/assert";
import { connection } from "./env";
import { WorkerDir } from "./lib/worker-dir";
Expand All @@ -25,7 +24,7 @@ export function runWorkers(

worker.on("error", (failedReason) => {
// Pretty print the error for debug reasons.
console.log(formatError(failedReason));
console.dir(failedReason);
});

return worker;
Expand Down

0 comments on commit f142932

Please sign in to comment.