From bbc493d13fb7efd6349353b1bb03c2244ce9b092 Mon Sep 17 00:00:00 2001 From: Kenneth Loeffler Date: Sat, 23 Sep 2023 13:52:12 -0700 Subject: [PATCH] Maybe table must be indented? --- CHANGELOG.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 912444f6e..fc90f866a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,22 +7,22 @@ * Added support for `Font` and `CFrame` attributes ([rbx-dom#299], [rbx-dom#296]) * Added the `emitLegacyScripts` field to the project format ([#765]). The behavior is outlined below: -| `emitLegacyScripts` Value | Action Taken by Rojo | -|---------------------------|------------------------------------------------------------------------------------------------------------------| -| false | Rojo emits Scripts with the appropriate `RunContext` for `*.client.lua` and `*.server.lua` files in the project. | -| true (default) | Rojo emits LocalScripts and Scripts with legacy `RunContext` (same behavior as previously). | + | `emitLegacyScripts` Value | Action Taken by Rojo | + |---------------------------|------------------------------------------------------------------------------------------------------------------| + | false | Rojo emits Scripts with the appropriate `RunContext` for `*.client.lua` and `*.server.lua` files in the project. | + | true (default) | Rojo emits LocalScripts and Scripts with legacy `RunContext` (same behavior as previously). | -It can be used like this: -```json -{ - "emitLegacyScripts": false, - "name": "MyCoolRunContextProject", - "tree": { - "$path": "src" + It can be used like this: + ```json + { + "emitLegacyScripts": false, + "name": "MyCoolRunContextProject", + "tree": { + "$path": "src" + } } -} -``` + ``` * Added `Terrain` classname inference, similar to services ([#771])