-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f57db6
commit 98c54fc
Showing
5 changed files
with
101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
rockspec_format = "3.0" | ||
package = "cyan" | ||
version = "0.3.1-1" | ||
source = { | ||
url = "git://github.com/teal-language/cyan", | ||
} | ||
description = { | ||
summary = "A build system for the Teal language", | ||
detailed = "A build system for the Teal language along with an api for external tooling to work with Teal", | ||
homepage = "https://github.com/teal-language/cyan", | ||
license = "MIT", | ||
issues_url = "https://github.com/teal-language/cyan/issues", | ||
} | ||
dependencies = { | ||
"argparse", | ||
"luafilesystem", | ||
"tl ~> 15", | ||
"luasystem >= 3.0.0", | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["cyan.ansi"] = "build/cyan/ansi.lua", | ||
["cyan.cli"] = "build/cyan/cli.lua", | ||
["cyan.colorstring"] = "build/cyan/colorstring.lua", | ||
["cyan.command"] = "build/cyan/command.lua", | ||
["cyan.commands.build"] = "build/cyan/commands/build.lua", | ||
["cyan.commands.check-gen"] = "build/cyan/commands/check-gen.lua", | ||
["cyan.commands.initialize"] = "build/cyan/commands/initialize.lua", | ||
["cyan.commands.run"] = "build/cyan/commands/run.lua", | ||
["cyan.commands.warnings"] = "build/cyan/commands/warnings.lua", | ||
["cyan.config"] = "build/cyan/config.lua", | ||
["cyan.fs.init"] = "build/cyan/fs/init.lua", | ||
["cyan.fs.path"] = "build/cyan/fs/path.lua", | ||
["cyan.graph"] = "build/cyan/graph.lua", | ||
["cyan.interaction"] = "build/cyan/interaction.lua", | ||
["cyan.log"] = "build/cyan/log.lua", | ||
["cyan.meta"] = "build/cyan/meta.lua", | ||
["cyan.sandbox"] = "build/cyan/sandbox.lua", | ||
["cyan.script"] = "build/cyan/script.lua", | ||
["cyan.tlcommon"] = "build/cyan/tlcommon.lua", | ||
["cyan.util"] = "build/cyan/util.lua", | ||
}, | ||
install = { | ||
lua = { | ||
["cyan.ansi"] = "src/cyan/ansi.tl", | ||
["cyan.cli"] = "src/cyan/cli.tl", | ||
["cyan.colorstring"] = "src/cyan/colorstring.tl", | ||
["cyan.command"] = "src/cyan/command.tl", | ||
["cyan.commands.build"] = "src/cyan/commands/build.tl", | ||
["cyan.commands.check-gen"] = "src/cyan/commands/check-gen.tl", | ||
["cyan.commands.initialize"] = "src/cyan/commands/initialize.tl", | ||
["cyan.commands.run"] = "src/cyan/commands/run.tl", | ||
["cyan.commands.warnings"] = "src/cyan/commands/warnings.tl", | ||
["cyan.config"] = "src/cyan/config.tl", | ||
["cyan.fs.init"] = "src/cyan/fs/init.tl", | ||
["cyan.fs.path"] = "src/cyan/fs/path.tl", | ||
["cyan.graph"] = "src/cyan/graph.tl", | ||
["cyan.interaction"] = "src/cyan/interaction.tl", | ||
["cyan.log"] = "src/cyan/log.tl", | ||
["cyan.meta"] = "src/cyan/meta.tl", | ||
["cyan.sandbox"] = "src/cyan/sandbox.tl", | ||
["cyan.script"] = "src/cyan/script.tl", | ||
["cyan.tlcommon"] = "src/cyan/tlcommon.tl", | ||
["cyan.util"] = "src/cyan/util.tl", | ||
}, | ||
bin = { | ||
"bin/cyan", | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
--- Meta information about Cyan itself | ||
|
||
return { | ||
version = "0.3.0+dev", | ||
version = "0.3.1", | ||
} |