a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

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

fix(lexicons): missing root path on validation errors

Mary 19731f46 ce13690f

+6 -1
+5
.changeset/tasty-chicken-repair.md
··· 1 + --- 2 + '@atcute/lexicons': patch 3 + --- 4 + 5 + fix missing root path on validation errors
+1 -1
packages/lexicons/lexicons/lib/validations/index.ts
··· 312 312 } 313 313 } 314 314 315 - let msg = `${tree.code} at ${path ?? '.'} (${message})`; 315 + let msg = `${tree.code} at ${path || '.'} (${message})`; 316 316 if (count > 0) { 317 317 msg += ` (+${count} other issue(s))`; 318 318 }