From 8fdd06a0bc630e58e87658ddc1a82c3b0e538b9e Mon Sep 17 00:00:00 2001 From: Gabriel Grubba Date: Tue, 23 Sep 2025 09:50:47 -0300 Subject: [PATCH 1/3] DOCS: Update migration guide section --- v3-docs/v3-migration-docs/index.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/v3-docs/v3-migration-docs/index.md b/v3-docs/v3-migration-docs/index.md index 611ec81fa1..bccbfc5e66 100644 --- a/v3-docs/v3-migration-docs/index.md +++ b/v3-docs/v3-migration-docs/index.md @@ -14,11 +14,7 @@ This guide is for users with Meteor 2.x projects understand the changes between ## What's the status of version 3.0? -Meteor 3.0 is currently in its official version! - -**Latest version:** `{{ $frontmatter.meteor_version }}`
-**Node.js version:** `{{ $frontmatter.node_version }} LTS`
-**NPM version:** `{{ $frontmatter.npm_version }}` +Meteor 3.0 is currently in its official version. [Check the documentation for the latest version information.](https://docs.meteor.com/) ## How to try Meteor 3.0? From 40dce65f325f70c9c3aa39d7b5734eca615021b9 Mon Sep 17 00:00:00 2001 From: Gabriel Grubba Date: Tue, 23 Sep 2025 10:49:10 -0300 Subject: [PATCH 2/3] DOCS: update migration guide section to be more modern and begginer friendly --- v3-docs/v3-migration-docs/index.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/v3-docs/v3-migration-docs/index.md b/v3-docs/v3-migration-docs/index.md index bccbfc5e66..ddc8eb86a7 100644 --- a/v3-docs/v3-migration-docs/index.md +++ b/v3-docs/v3-migration-docs/index.md @@ -1,8 +1,3 @@ ---- -meteor_version: 3.3.1 -node_version: 22.17.1 -npm_version: 10.9.2 ---- # Meteor 3.0 Migration Guide :::info You are reading the migration guide for Meteor 3! @@ -18,18 +13,26 @@ Meteor 3.0 is currently in its official version. [Check the documentation for th ## How to try Meteor 3.0? -You can create a new Meteor 3.0 project by running the command below: +You can install the latest Meteor version command below: ```bash-vue - meteor create my-new-project --release {{ $frontmatter.meteor_version }} + npx meteor ``` +and to create a new Meteor project: + +```bash-vue + meteor create +``` + +This will prompt the project creator wizard to help you set up a new project. + ## How to upgrade from Meteor 2.x? You can upgrade your Meteor 2.x project by running the command below inside your project folder: ```bash-vue -meteor update --release {{ $frontmatter.meteor_version }} +meteor update meteor reset # resets project to a fresh state ``` From a99eafaa94c0c75d248311f677b30d04cc57ff9e Mon Sep 17 00:00:00 2001 From: Gabriel Grubba Date: Tue, 23 Sep 2025 10:51:01 -0300 Subject: [PATCH 3/3] DOCS: added a how to generate a meteor project on the quick start section --- v3-docs/docs/about/install.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/v3-docs/docs/about/install.md b/v3-docs/docs/about/install.md index 05290d9624..e19d252106 100644 --- a/v3-docs/docs/about/install.md +++ b/v3-docs/docs/about/install.md @@ -6,6 +6,14 @@ You need to install the Meteor command line tool to create, run, and manage your npx meteor ``` +To create your meteor project you can run: + +```bash +meteor create +``` + +And it will prompt you to choose a project name and frontend framework. + ## Prerequisites {#prereqs} ### Operating System (OS) {#prereqs-os}