From 9b21e57c937896e580950ff9d249bf0709e0fb49 Mon Sep 17 00:00:00 2001 From: Wu Zhenyu Date: Sat, 17 Feb 2024 22:46:04 +0800 Subject: [PATCH] Disable some languages --- build.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build.py b/build.py index 1a417fd..f05272b 100644 --- a/build.py +++ b/build.py @@ -11,7 +11,19 @@ repos = [] vendors = [] +# https://github.com/tree-sitter/py-tree-sitter/issues/189 +disabled_langs = [ + "vue", # html, angular + "angular", # html + "purescript", # haskell, unison + "unison", # haskell + "terraform", # hcl + "svelte", # org + "beancount", # org +] for lang, data in parsers.items(): + if lang in disabled_langs: + continue url = data["install_info"]["url"] commit = lockfile[lang]["revision"] clone_directory = os.path.join("vendor", url.rstrip("/").split("/")[-1])