Skip to content

Commit 7959ca9

Browse files
committed
rockspec: Add fusion.util and fusion-lint
1 parent 826a0b1 commit 7959ca9

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

fusionscript-dev-1.rockspec

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@ package = "fusionscript"
22
version = "dev-1"
33

44
source = {
5-
url = "git://github.com/ChickenNuggers/FusionScript.git"
5+
url = "git://github.com/ChickenNuggers/FusionScript.git";
66
}
77

88
description = {
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

1414
dependencies = {
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

2121
local default = "source"
2222

2323
build = {
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
}

0 commit comments

Comments
 (0)