1
0
Fork 0
mirror of https://github.com/Reuh/candran.git synced 2025-10-27 09:59:29 +00:00

Candran 0.12.0

This commit is contained in:
Étienne Fildadut 2020-04-06 23:30:48 +02:00
parent 33ac4c5d7f
commit 6edc682b21
3 changed files with 62 additions and 22 deletions

View file

@ -2,7 +2,7 @@ rockspec_format = "3.0"
package = "candran"
version = "0.11.0-1"
version = "0.12.0-1"
description = {
summary = "A simple Lua dialect and preprocessor.",
@ -19,13 +19,14 @@ description = {
source = {
url = "git://github.com/Reuh/candran",
tag = "v0.11.0"
tag = "v0.12.0"
}
dependencies = {
"lua >= 5.1",
"lpeglabel >= 1.5.0",
"linenoise >= 0.9"
"linenoise >= 0.9",
"luacheck >= 0.23.0"
}
build = {
@ -34,6 +35,6 @@ build = {
candran = "candran.lua"
},
install = {
bin = { "bin/can", "bin/canc" }
bin = { "bin/can", "bin/canc", "bin/cancheck" }
}
}