File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed
Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -2,26 +2,26 @@ package = "fusionscript"
22version = " dev-1"
33
44source = {
5- url = " git://github.com/ChickenNuggers/FusionScript.git"
5+ url = " git://github.com/ChickenNuggers/FusionScript.git" ;
66}
77
88description = {
9- summary = " A Lua compilable language based on C and Python" ,
10- maintainer = " Ryan <[email protected] >" , 11- license = " MIT"
9+ summary = " A Lua compilable language based on C and Python" ;
10+ maintainer = " Ryan <[email protected] >" ; 11+ license = " MIT" ;
1212}
1313
1414dependencies = {
15- " lua >= 5.1" ,
16- " lpeg >= 1.0" ,
17- " luafilesystem" ,
18- " serpent"
15+ " lua >= 5.1" ;
16+ " lpeg >= 1.0" ;
17+ " luafilesystem" ;
18+ " serpent" ;
1919}
2020
2121local default = " source"
2222
2323build = {
24- type = " builtin" ,
24+ type = " builtin" ;
2525 modules = {
2626 [" fusion.stdlib.functional" ] = " fusion/stdlib/functional.lua" ;
2727 [" fusion.stdlib.table" ] = " fusion/stdlib/table.lua" ;
@@ -30,15 +30,17 @@ build = {
3030 [" fusion.stdlib.class" ] = " fusion/stdlib/class.lua" ;
3131 [" fusion.core.compilers.source" ] = " fusion/core/compilers/source.lua" ;
3232 [" fusion.core.parser" ] = " fusion/core/parser.lua" ;
33- },
33+ [" fusion.util" ] = " fusion/util.lua" ;
34+ };
3435 install = {
3536 bin = {
3637 [" fusion-ast" ] = " bin/util/ast.lua" ;
38+ [" fusion-lint" ] = " bin/util/linter.lua" ;
3739 [" fusion-pkg" ] = " bin/util/pkg.lua" ;
3840 [" fusion" ] = (" bin/interpreter/%s.lua" ):format (default );
3941 [" fusionc" ] = (" bin/compiler/%s.lua" ):format (default );
4042 [" fusion-source" ] = " bin/interpreter//source.lua" ;
4143 [" fusionc-source" ] = " bin/compiler/source.lua" ;
4244 }
43- }
45+ };
4446}
You can’t perform that action at this time.
0 commit comments