diff --git a/site/content/docs/00-introduction.md b/site/content/docs/00-introduction.md index 0148a9e..18811b5 100644 --- a/site/content/docs/00-introduction.md +++ b/site/content/docs/00-introduction.md @@ -5,6 +5,8 @@ title: Introduction ### Before we begin > Sapper is in early development, and some things may change before we hit version 1.0. This document is a work-in-progress. If you get stuck, reach out for help in the [Discord chatroom](https://discord.gg/yy75DKs). +> +> See the [migration guides](migrating) for help upgrading from older versions. ### What is Sapper? diff --git a/site/content/migration/01-migrating.md b/site/content/migrating/01-migrating.md similarity index 100% rename from site/content/migration/01-migrating.md rename to site/content/migrating/01-migrating.md diff --git a/site/src/routes/migration/index.json.js b/site/src/routes/migrating/index.json.js similarity index 82% rename from site/src/routes/migration/index.json.js rename to site/src/routes/migrating/index.json.js index 3fe415b..01d82df 100644 --- a/site/src/routes/migration/index.json.js +++ b/site/src/routes/migrating/index.json.js @@ -5,7 +5,7 @@ let json; export function get(req, res) { if (!json || process.env.NODE_ENV !== 'production') { - json = JSON.stringify(generate_docs('migration')); // TODO it errors if I send the non-stringified value + json = JSON.stringify(generate_docs('migrating')); // TODO it errors if I send the non-stringified value } send(res, 200, json, { diff --git a/site/src/routes/migration/index.svelte b/site/src/routes/migrating/index.svelte similarity index 88% rename from site/src/routes/migration/index.svelte rename to site/src/routes/migrating/index.svelte index 6fa8603..a7bc138 100644 --- a/site/src/routes/migration/index.svelte +++ b/site/src/routes/migrating/index.svelte @@ -1,6 +1,6 @@