aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-09-09 16:01:47 +0200
committerChristian Clason <c.clason@uni-graz.at>2024-09-11 11:10:40 +0200
commita5bd6665b00a772ef3ccbcb5f2cbc12020634a3d (patch)
tree843a4c402f195212172f72521b0964c5b272d888 /scripts
parent4ac733f6ef2d05637cec80d8708e622877188815 (diff)
downloadrneovim-a5bd6665b00a772ef3ccbcb5f2cbc12020634a3d.tar.gz
rneovim-a5bd6665b00a772ef3ccbcb5f2cbc12020634a3d.tar.bz2
rneovim-a5bd6665b00a772ef3ccbcb5f2cbc12020634a3d.zip
fix(scripts): update bundled dependencies in bump_deps
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bump_deps.lua26
1 files changed, 23 insertions, 3 deletions
diff --git a/scripts/bump_deps.lua b/scripts/bump_deps.lua
index c5294893e0..e332ef475f 100755
--- a/scripts/bump_deps.lua
+++ b/scripts/bump_deps.lua
@@ -81,6 +81,14 @@ local function get_dependency(dependency_name)
repo = 'luvit/luv',
symbol = 'LUV',
},
+ ['unibilium'] = {
+ repo = 'neovim/unibilium',
+ symbol = 'UNIBILIUM',
+ },
+ ['utf8proc'] = {
+ repo = 'JuliaStrings/utf8proc',
+ symbol = 'UTF8PROC',
+ },
['tree-sitter'] = {
repo = 'tree-sitter/tree-sitter',
symbol = 'TREESITTER',
@@ -90,11 +98,11 @@ local function get_dependency(dependency_name)
symbol = 'TREESITTER_C',
},
['tree-sitter-lua'] = {
- repo = 'MunifTanjim/tree-sitter-lua',
+ repo = 'tree-sitter-grammars/tree-sitter-lua',
symbol = 'TREESITTER_LUA',
},
['tree-sitter-vim'] = {
- repo = 'neovim/tree-sitter-vim',
+ repo = 'tree-sitter-grammars/tree-sitter-vim',
symbol = 'TREESITTER_VIM',
},
['tree-sitter-vimdoc'] = {
@@ -102,9 +110,21 @@ local function get_dependency(dependency_name)
symbol = 'TREESITTER_VIMDOC',
},
['tree-sitter-query'] = {
- repo = 'nvim-treesitter/tree-sitter-query',
+ repo = 'tree-sitter-grammars/tree-sitter-query',
symbol = 'TREESITTER_QUERY',
},
+ ['tree-sitter-markdown'] = {
+ repo = 'tree-sitter-grammars/tree-sitter-markdown',
+ symbol = 'TREESITTER_MARKDOWN',
+ },
+ ['wasmtime'] = {
+ repo = 'bytecodealliance/wasmtime',
+ symbol = 'WASMTIME',
+ },
+ ['uncrustify'] = {
+ repo = 'uncrustify/uncrustify',
+ symbol = 'UNCRUSTIFY',
+ },
}
local dependency = dependency_table[dependency_name]
if dependency == nil then