A Bluesky labeler that labels accounts hosted on PDSes operated by entities other than Bluesky PBC
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix unhandled rejections via dependency update

gbl08ma 12ec14fe f09c2997

+2 -7
+1 -1
bun.lock
··· 18 18 "@types/bun": "latest", 19 19 }, 20 20 "peerDependencies": { 21 - "typescript": "^5", 21 + "typescript": "^5.9.2", 22 22 }, 23 23 }, 24 24 },
-5
index.ts
··· 3 3 import type { LabelerOptions } from "./labeler"; 4 4 import { Labeler } from "./labeler"; 5 5 6 - // atcute is internally spawning Promises whose rejections I can't catch https://github.com/mary-ext/atcute/issues/43 7 - process.on('unhandledRejection', (reason, promise) => { 8 - console.log('Unhandled Rejection at:', promise, 'reason:', reason, "stack", (reason as any).stack); 9 - }); 10 - 11 6 function throwMissingEnvVarError<T>(): T { 12 7 throw Error("Missing required environment variable"); 13 8 }
+1 -1
package.json
··· 8 8 "@types/bun": "latest" 9 9 }, 10 10 "peerDependencies": { 11 - "typescript": "^5" 11 + "typescript": "^5.9.2" 12 12 }, 13 13 "dependencies": { 14 14 "@atcute/atproto": "^3.1.4",