diff --git a/docs/lync/getting-started/usage/lync-executable.md b/docs/lync/getting-started/usage/lync-executable.md index 00a5ef4..9f540bc 100644 --- a/docs/lync/getting-started/usage/lync-executable.md +++ b/docs/lync/getting-started/usage/lync-executable.md @@ -7,18 +7,12 @@ The Lync executable can start a live sync session, build to file, and fetch down ::: info Command Line Arguments - `LYNC HELP` - Displays the list of available arguments. - `LYNC CONFIG` - Opens the config file. -- `LYNC SERVE project.json? REMOTE?` - Syncs the project. -- `LYNC OPEN project.json? REMOTE?` - Builds, syncs, and opens the project in Roblox Studio. +- `LYNC SERVE project.json?` - Syncs the project. +- `LYNC OPEN project.json?` - Builds, syncs, and opens the project in Roblox Studio. - `LYNC BUILD project.json?` - Builds the project to file. - `LYNC FETCH project.json?` - Downloads the list of sources in the project file. `project.json?` - The project file to read from and serve. - -`REMOTE?` - Connect to the project's `remoteAddress` instead of the localhost. -::: - -::: danger UNAVAILABLE -`REMOTE` is unimplemented. ::: ## Live Sync diff --git a/docs/lync/project-format/project/project-file.md b/docs/lync/project-format/project/project-file.md index a72a6a0..a3efb2f 100644 --- a/docs/lync/project-format/project/project-file.md +++ b/docs/lync/project-format/project/project-file.md @@ -20,8 +20,6 @@ Lync projects define the Instance tree inside Roblox, as well as configuring the - The path to save the finished build file when using `OPEN` and `BUILD` modes. - `port`: number - The network port to serve the project on when using `SERVE` and `OPEN` modes. -- `remoteAddress`: string *(Optional)* - - The IP address or hostname to connect to instead of the localhost. - `servePlaceIds`: {number} *(Optional)* - An array of place IDs to serve. Lync will refuse to connect if the open place ID isn't found in the array. - `globIgnorePaths`: {string} *(Optional)* @@ -35,9 +33,6 @@ Lync projects define the Instance tree inside Roblox, as well as configuring the - `tree`: Object - The root Instance. ::: -::: danger UNAVAILABLE -`remoteAddress` is unimplemented. -::: ### Example @@ -47,7 +42,6 @@ Lync projects define the Instance tree inside Roblox, as well as configuring the "base": "Base.rbxl", "build": "Build.rbxl", "port": 34873, - "remoteAddress": "localhost", "servePlaceIds": [ 1818 ], "globIgnorePaths": [ "ignoredDirectory/**" ], "sourcemapEnabled": {