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(lex-cli): fix invalid path

Mary fec4ba9c a6e93b0b

+2 -2
+1 -1
packages/lexicons/lex-cli/schema/lexicon-package.schema.json
··· 21 21 }, 22 22 "path": { 23 23 "type": "string", 24 - "pattern": "^(\\.|\\.\\/)" 24 + "pattern": "^\\.$|^\\.\\/" 25 25 } 26 26 }, 27 27 "required": [
+1 -1
packages/lexicons/lex-cli/src/lexicon-metadata.ts
··· 22 22 */ 23 23 const lexiconMappingEntry = v.object({ 24 24 type: v.picklist(['namespace', 'named']), 25 - path: v.pipe(v.string(), v.regex(/^(\.|\.\/)/)), 25 + path: v.pipe(v.string(), v.regex(/^\.$|^\.\//)), 26 26 }); 27 27 28 28 /**