Regenerate nvim config
This commit is contained in:
@ -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'
|
||||
}
|
||||
}
|
||||
@ -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'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user