docs: update embedded sandbox script in article

This commit is contained in:
Erica Marigold 2024-05-15 21:57:14 +05:30
parent f5f6d1be2c
commit cb9471737b
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1
2 changed files with 9 additions and 3 deletions

View file

@ -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"),
}),

View file

@ -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)