diff --git a/aftman.toml b/aftman.toml index aebcd0a..37eb389 100644 --- a/aftman.toml +++ b/aftman.toml @@ -1,4 +1,4 @@ [tools] -luau-lsp = "JohnnyMorganz/luau-lsp@1.20.0" -selene = "Kampfkarren/selene@0.24.0" -stylua = "JohnnyMorganz/StyLua@0.17.0" +luau-lsp = "JohnnyMorganz/luau-lsp@1.23.0" +selene = "Kampfkarren/selene@0.25.0" +stylua = "JohnnyMorganz/StyLua@0.18.1" diff --git a/tests/roblox/instance/classes/Terrain.luau b/tests/roblox/instance/classes/Terrain.luau index 3902d21..519c03b 100644 --- a/tests/roblox/instance/classes/Terrain.luau +++ b/tests/roblox/instance/classes/Terrain.luau @@ -1,4 +1,4 @@ -local roblox = require("@lune/roblox") +local roblox = require("@lune/roblox") :: any local Instance = roblox.Instance local Color3 = roblox.Color3 local Enum = roblox.Enum diff --git a/types/Luau.luau b/types/Luau.luau index a54b2fc..550ea56 100644 --- a/types/Luau.luau +++ b/types/Luau.luau @@ -74,11 +74,11 @@ local luau = {} ``` @param source The string that'll be compiled into bytecode - @param CompileOptions The luau compiler options used when compiling the source string + @param compileOptions The luau compiler options used when compiling the source string @return luau bytecode ]=] -function luau.compile(source: string, CompileOptions: CompileOptions?): string +function luau.compile(source: string, compileOptions: CompileOptions?): string return nil :: any end