From cb9471737bf61c607b6775a5abb1ea3438157020 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 15 May 2024 21:57:14 +0530 Subject: [PATCH] docs: update embedded sandbox script in article --- modules/sandbox.luau | 2 +- pages/getting-started/5-security.mdx | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/modules/sandbox.luau b/modules/sandbox.luau index a09986a..b5e8afa 100644 --- a/modules/sandbox.luau +++ b/modules/sandbox.luau @@ -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"), }), diff --git a/pages/getting-started/5-security.mdx b/pages/getting-started/5-security.mdx index 04c11af..ca52bfe 100644 --- a/pages/getting-started/5-security.mdx +++ b/pages/getting-started/5-security.mdx @@ -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)