Real ATProto app lexicons converted to mlf
0
fork

Configure Feed

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

at main 22 lines 674 B view raw
1default: fetch 2 3# Wipe copied output, fetch all deps from mlf.toml, copy into repo root. 4# `mlf fetch` is allowed to partially fail — some upstream lexicons have 5# non-spec shapes that the converter can't yet handle, and we still want 6# to commit everything that did convert successfully. 7fetch: 8 rm -rf json mlf 9 -mlf fetch 10 cp -R .mlf/lexicons/json ./json 11 cp -R .mlf/lexicons/mlf ./mlf 12 13# Force refresh from network, ignoring the lockfile 14update: 15 rm -rf json mlf 16 -mlf fetch --update 17 cp -R .mlf/lexicons/json ./json 18 cp -R .mlf/lexicons/mlf ./mlf 19 20# Remove everything generated (keeps mlf.toml + mlf-lock.toml) 21clean: 22 rm -rf .mlf json mlf