diff --git a/docs/lync/introduction/community-tooling.md b/docs/lync/introduction/community-tooling.md index 4ea8e97..0bbd375 100644 --- a/docs/lync/introduction/community-tooling.md +++ b/docs/lync/introduction/community-tooling.md @@ -9,6 +9,12 @@ This list is by no means complete. - [Wally](https://wally.run/) ::: +::: tip +A package manager is included with Lync. + +See [project-format/project-file/packages](/lync/project-format/project-file/packages). +::: + ::: info Language Servers and Linters - [Luau Language Server](https://github.com/JohnnyMorganz/luau-lsp) - [~~Roblox Luau Language Server~~](https://github.com/NightrainsRbx/RobloxLsp) *(Abandoned)* diff --git a/docs/lync/project-format/files/script-directives.md b/docs/lync/project-format/files/script-directives.md index 5c340f1..8408908 100644 --- a/docs/lync/project-format/files/script-directives.md +++ b/docs/lync/project-format/files/script-directives.md @@ -4,9 +4,9 @@ Add Script Directives to the top of your script to control its [RunContext](http | Directive | ClassName | RunContext | Behavior | |-|-|-|-| | None | [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript) | - | None | -| `--@script` / `--@script:legacy` | [Script](https://create.roblox.com/docs/reference/engine/classes/Script) | Legacy | Runs in legacy script containers dependent on the type of script. | +| `--@script` `--@script:legacy` | [Script](https://create.roblox.com/docs/reference/engine/classes/Script) | Legacy | Runs in legacy script containers dependent on the type of script. | | `--@script:server` | [Script](https://create.roblox.com/docs/reference/engine/classes/Script) | Server | Runs on the server. | | `--@script:client` | [Script](https://create.roblox.com/docs/reference/engine/classes/Script) | Client | Runs on the client. | -| `--@localscript` / `--@script:localscript` | [LocalScript](https://create.roblox.com/docs/reference/engine/classes/LocalScript) | - | Runs in legacy script containers dependent on the type of script. | +| `--@localscript` `--@script:localscript` | [LocalScript](https://create.roblox.com/docs/reference/engine/classes/LocalScript) | - | Runs in legacy script containers dependent on the type of script. | | `--@disabled` | - | - | Determines whether the script will run or not. | ::: diff --git a/docs/lync/project-format/files/supported-files.md b/docs/lync/project-format/files/supported-files.md index 5a10f5b..7ec20b1 100644 --- a/docs/lync/project-format/files/supported-files.md +++ b/docs/lync/project-format/files/supported-files.md @@ -21,5 +21,7 @@ All forms of Roblox content can be stored on the filesystem and synced. | Init Scripts (Named) | `*.Init.LUA` / `LUAU` | [LuaSourceContainer](https://create.roblox.com/docs/reference/engine/classes/LuaSourceContainer) * | | Meta Files | `*.Meta.JSON` / `YAML` / `TOML` | - | -\* Can be [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript), [Script](https://create.roblox.com/docs/reference/engine/classes/Script), or [LocalScript](https://create.roblox.com/docs/reference/engine/classes/LocalScript) depending on the script run context directive +\* Can be [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript), [Script](https://create.roblox.com/docs/reference/engine/classes/Script), or [LocalScript](https://create.roblox.com/docs/reference/engine/classes/LocalScript) depending on the script run context directive. + +See [project-format/files/script-directives](/lync/project-format/files/script-directives). :::