mirror of
https://github.com/lune-org/docs.git
synced 2025-04-03 18:10:54 +01:00
docs: update embedded sandbox script in article
This commit is contained in:
parent
f5f6d1be2c
commit
cb9471737b
2 changed files with 9 additions and 3 deletions
|
@ -105,7 +105,7 @@ local SANDBOXED_LUNE_STD_LIB = {
|
|||
}),
|
||||
["@lune/stdio"] = setmetatable({
|
||||
write = sandboxPrint,
|
||||
ewrite = sandboxPrint, -- TODO: do this
|
||||
ewrite = sandboxPrint,
|
||||
}, {
|
||||
__index = constructSandboxMt("@lune/stdio"),
|
||||
}),
|
||||
|
|
|
@ -29,6 +29,8 @@ local process = require("@lune/process")
|
|||
local serde = require("@lune/serde")
|
||||
local stdio = require("@lune/stdio")
|
||||
local task = require("@lune/task")
|
||||
local regex = require("@lune/regex")
|
||||
local datetime = require("@lune/datetime")
|
||||
|
||||
local processArgs = table.clone(process.args)
|
||||
local filePath: string = table.remove(processArgs, 1)
|
||||
|
@ -120,13 +122,15 @@ local SANDBOXED_LUNE_STD_LIB = {
|
|||
["@lune/fs"] = setmetatable({}, {
|
||||
__index = constructProtectedLibMt("fs"),
|
||||
}),
|
||||
["@lune/luau"] = luau,
|
||||
["@lune/luau"] = setmetatable({}, {
|
||||
__index = constructProtectedLibMt("luau")
|
||||
}),
|
||||
["@lune/process"] = setmetatable({}, {
|
||||
__index = constructProtectedLibMt("process"),
|
||||
}),
|
||||
["@lune/stdio"] = setmetatable({
|
||||
write = sandboxPrint,
|
||||
ewrite = sandboxPrint, -- TODO: do this
|
||||
ewrite = sandboxPrint,
|
||||
}, {
|
||||
__index = constructSandboxMt("@lune/stdio"),
|
||||
}),
|
||||
|
@ -154,6 +158,8 @@ local SANDBOXED_LUNE_STD_LIB = {
|
|||
}),
|
||||
["@lune/serde"] = serde,
|
||||
["@lune/task"] = task,
|
||||
["@lune/regex"] = regex,
|
||||
["@lune/datetime"] = datetime,
|
||||
}
|
||||
|
||||
local function sandboxedRequire(path: string)
|
||||
|
|
Loading…
Add table
Reference in a new issue