1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1,31 @@
package = 'promise-async'
version = '1.0-0'
source = {
url = 'git+https://github.com/kevinhwang91/promise-async.git',
tag = 'v1.0.0'
}
description = {
summary = 'Promise & Async in Lua',
detailed = 'The goal of promise-async is to port Promise & Async from JavaScript to Lua.',
homepage = 'https://github.com/kevinhwang91/promise-async',
license = ' BSD-3-Clause'
}
dependencies = {
'lua >= 5.1, <= 5.4'
}
build = {
type = 'builtin',
modules = {
async = 'lua/async.lua',
promise = 'lua/promise.lua',
['promise-async.compat'] = 'lua/promise-async/compat.lua',
['promise-async.error'] = 'lua/promise-async/error.lua',
['promise-async.loop'] = 'lua/promise-async/loop.lua',
['promise-async.utils'] = 'lua/promise-async/utils.lua'
},
copy_directories = {
'typings'
}
}

View File

@ -0,0 +1,30 @@
package = 'promise-async'
version = 'scm-0'
source = {
url = 'git+https://github.com/kevinhwang91/promise-async.git'
}
description = {
summary = 'Promise & Async in Lua',
detailed = 'The goal of promise-async is to port Promise & Async from JavaScript to Lua.',
homepage = 'https://github.com/kevinhwang91/promise-async',
license = ' BSD-3-Clause'
}
dependencies = {
'lua >= 5.1, <= 5.4'
}
build = {
type = 'builtin',
modules = {
async = 'lua/async.lua',
promise = 'lua/promise.lua',
['promise-async.compat'] = 'lua/promise-async/compat.lua',
['promise-async.error'] = 'lua/promise-async/error.lua',
['promise-async.loop'] = 'lua/promise-async/loop.lua',
['promise-async.utils'] = 'lua/promise-async/utils.lua'
},
copy_directories = {
'typings'
}
}