Various AT Protocol integrations with obsidian
at main 25 lines 563 B view raw
1// file: lex.config.js 2import { defineLexiconConfig } from '@atcute/lex-cli'; 3 4export default defineLexiconConfig({ 5 files: ['lexicons/**/*.json'], 6 outdir: 'src/lexicons/', 7 pull: { 8 outdir: 'lexicons/', 9 clean: false, 10 sources: [ 11 { 12 type: 'git', 13 remote: 'https://github.com/cosmik-network/semble.git', 14 ref: 'main', 15 pattern: ['src/modules/atproto/infrastructure/lexicons/**/*.json'], 16 }, 17 { 18 type: 'git', 19 remote: 'https://tangled.org/margin.at/margin.git', 20 ref: 'main', 21 pattern: ['lexicons/**/*.json'], 22 }, 23 ], 24 }, 25});