From 885c2960ef4be1c75b1391c1a458a811912f44a9 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Sun, 28 Jan 2024 10:50:38 +0100 Subject: fix: better output for update-lockfile --- scripts/update-lockfile.lua | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) (limited to 'scripts/update-lockfile.lua') diff --git a/scripts/update-lockfile.lua b/scripts/update-lockfile.lua index 0c9288b6a..d77baed61 100755 --- a/scripts/update-lockfile.lua +++ b/scripts/update-lockfile.lua @@ -1,17 +1,15 @@ #!/usr/bin/env -S nvim -l vim.opt.runtimepath:append('.') local util = require('nvim-treesitter.util') +local parsers = require('nvim-treesitter.parsers').configs -- Load previous lockfile local filename = require('nvim-treesitter.install').get_package_path('lockfile.json') local old_lockfile = vim.json.decode(util.read_file(filename)) --[[@as table]] ----@type table -local new_lockfile = {} - -local parsers = require('nvim-treesitter.parsers').configs - -local jobs = {} --- @type table +local jobs = {} ---@type table +local new_lockfile = {} ---@type table +local updates = {} ---@type string[] -- check for new revisions for k, p in pairs(parsers) do @@ -19,6 +17,7 @@ for k, p in pairs(parsers) do new_lockfile[k] = old_lockfile[k] print('Skipping ' .. k) elseif p.install_info then + print('Updating ' .. k) jobs[k] = vim.system({ 'git', 'ls-remote', p.install_info.url }) end @@ -41,17 +40,25 @@ for k, p in pairs(parsers) do local sha = vim.split(stdout[line], '\t')[1] new_lockfile[name] = { revision = sha } - print(name .. ': ' .. sha) + if new_lockfile[name].revision ~= old_lockfile[name].revision then + updates[#updates + 1] = name + end end end end assert(#vim.tbl_keys(jobs) == 0) -local lockfile_json = vim.json.encode(new_lockfile) --[[@as string]] -if vim.fn.executable('jq') == 1 then - lockfile_json = - assert(vim.system({ 'jq', '--sort-keys' }, { stdin = lockfile_json }):wait().stdout) -end +if #updates > 0 then + -- write new lockfile + local lockfile_json = vim.json.encode(new_lockfile) --[[@as string]] + if vim.fn.executable('jq') == 1 then + lockfile_json = + assert(vim.system({ 'jq', '--sort-keys' }, { stdin = lockfile_json }):wait().stdout) + end + util.write_file(filename, lockfile_json) -util.write_file(filename, lockfile_json) + print(string.format('\nUpdated parsers: %s', table.concat(updates, ', '))) +else + print('\nAll parsers up to date!') +end -- cgit v1.2.3-70-g09d2