Skip to content

Commit f142932

Browse files
committed
fix: Lint for type errors
1 parent 05e0f15 commit f142932

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

bun.lockb

-712 Bytes
Binary file not shown.

packages/artisan/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"iso-language-codes": "^2.0.0",
2323
"mime-types": "^2.1.35",
2424
"parse-filepath": "^1.0.2",
25-
"pretty-print-error": "^1.1.2",
2625
"s3-sync-client": "^4.3.1",
2726
"shared": "workspace:*"
2827
},

packages/bolt/src/worker.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { WaitingChildrenError, Worker } from "bullmq";
2-
import { formatError } from "pretty-print-error";
32
import { assert } from "shared/assert";
43
import { connection } from "./env";
54
import { WorkerDir } from "./lib/worker-dir";
@@ -25,7 +24,7 @@ export function runWorkers(
2524

2625
worker.on("error", (failedReason) => {
2726
// Pretty print the error for debug reasons.
28-
console.log(formatError(failedReason));
27+
console.dir(failedReason);
2928
});
3029

3130
return worker;

0 commit comments

Comments
 (0)