mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
Merge branch 'main' into chore/dev-profile
This commit is contained in:
commit
97371d2e62
3 changed files with 6 additions and 6 deletions
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue