aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/convert-lockfile.lua1
-rwxr-xr-xscripts/update-readme.lua9
2 files changed, 3 insertions, 7 deletions
diff --git a/scripts/convert-lockfile.lua b/scripts/convert-lockfile.lua
index e0a694897..5759c0426 100755
--- a/scripts/convert-lockfile.lua
+++ b/scripts/convert-lockfile.lua
@@ -9,6 +9,7 @@ local lockfile = vim.json.decode(util.read_file(filename)) --[[@as table<string,
for k, p in pairs(parsers) do
if p.install_info then
p.install_info.revision = lockfile[k].revision
+ p.install_info.files = nil
end
end
diff --git a/scripts/update-readme.lua b/scripts/update-readme.lua
index 9f6f9a3de..5a8b1c17b 100755
--- a/scripts/update-readme.lua
+++ b/scripts/update-readme.lua
@@ -16,8 +16,8 @@ table.sort(sorted_parsers, function(a, b)
end)
local generated_text = [[
-Language | Tier | Queries | CLI | Maintainer
--------- |:----:|:-------:|:---:| ----------
+Language | Tier | Queries | Maintainer
+-------- |:----:|:-------:| ----------
]]
local footnotes = ''
@@ -58,11 +58,6 @@ for _, v in ipairs(sorted_parsers) do
.. (vim.uv.fs_stat('runtime/queries/' .. v.name .. '/locals.scm') and 'L' or ' ')
.. '` | '
- -- CLI
- generated_text = generated_text
- .. (p.install_info and p.install_info.generate and '✓' or '')
- .. ' | '
-
-- Maintainer
generated_text = generated_text
.. (p.maintainers and table.concat(p.maintainers, ', ') or '')