From 2c2554d73d6d26b55e21b6a17a673fd20453ac45 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 1 Feb 2019 18:03:41 -0800 Subject: [PATCH] Update docs to talk about default.project.json --- docs/getting-started/creating-a-place.md | 2 +- docs/migrating-to-epiphany.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/creating-a-place.md b/docs/getting-started/creating-a-place.md index fb2b493f..49acbd01 100644 --- a/docs/getting-started/creating-a-place.md +++ b/docs/getting-started/creating-a-place.md @@ -9,7 +9,7 @@ cd my-new-project rojo init ``` -Rojo will make a small project file in your directory, named `roblox-project.json`. It'll make sure that any code in the directory `src` will get put into `ReplicatedStorage.Source`. +Rojo will make a small project file in your directory, named `default.project.json`. It'll make sure that any code in the directory `src` will get put into `ReplicatedStorage.Source`. Speaking of, let's make sure we create a directory named `src`, and maybe a Lua file inside of it: diff --git a/docs/migrating-to-epiphany.md b/docs/migrating-to-epiphany.md index fbd48481..598b1e5f 100644 --- a/docs/migrating-to-epiphany.md +++ b/docs/migrating-to-epiphany.md @@ -1,7 +1,7 @@ Rojo underwent a large refactor during most of 2018 to enable a bunch of new features and lay groundwork for lots more in 2019. As such, Rojo **0.5.x** projects are not compatible with Rojo **0.4.x** projects. ## Supporting Both 0.4.x and 0.5.x -Rojo 0.5.x uses a different name for its project format. While 0.4.x used `rojo.json`, 0.5.x uses `roblox-project.json`, which allows them to coexist. +Rojo 0.5.x uses a different name for its project format. While 0.4.x used `rojo.json`, 0.5.x uses `default.project.json`, which allows them to coexist. If you aren't sure about upgrading or want to upgrade gradually, it's possible to keep both files in the same project without causing problems.