From d44744e47bf52418fed4c0c0e84c39c96940bb86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 14 Jan 2026 14:26:01 +0100 Subject: [PATCH 01/25] remove Rspack cache documentation from integration guide as repeated --- .../rspack-bundler-integration.md | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md b/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md index f7ea8f5a74..af0d01cddd 100644 --- a/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md +++ b/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md @@ -587,27 +587,6 @@ module.exports = defineConfig((Meteor) => { More info in [this forum post](https://forums.meteor.com/t/new-3-4-beta-12-release-faster-builds-smaller-bundles-and-modern-setups-with-the-rspack-integration/64124/94). -### Cache - -Meteor cache remains active and continues to handle Atmosphere packages and intermediate builds. There’s an additional cache layer managed by Rspack to speed up rebuilds for your app code. - -This Rspack cache is enabled by default in persistent mode. If you [encounter issues](https://github.com/web-infra-dev/rspack/issues/11804) or prefer to disable it, you can do so in your `rspack.config.js` using the helper: - -```json -const { defineConfig } = require('@meteorjs/rspack'); -const { rspack } = require('@rspack/core'); -const NodePolyfillPlugin = require('node-polyfill-webpack-plugin'); - -module.exports = defineConfig(Meteor => ({ - // Disable cache, or use 'memory' to switch to in-memory cache - ...Meteor.setCache(false), -})); - - -``` - -This helper provide a shortcut to apply the needed Rspack configuration and safely override defaults, so you don’t have to handle it manually. - ### Split Vendor Chunk When using dynamic imports (`import()`), you might unintentionally include libraries like React, Mantine, or date utilities in multiple async chunks. To avoid this, it's best to define a stable `vendor` chunk for shared dependencies. From 6c83b188cb64895303f11d2afdc5e058014e57cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 14 Jan 2026 14:30:22 +0100 Subject: [PATCH 02/25] update React tutorial with Rspack and HMR improvements --- v3-docs/docs/tutorials/react/1.creating-the-app.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 962a73bc6a..7204184e99 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -115,6 +115,8 @@ Remove the `Hello` and `Info` from your `App` component, remember to also remove ### 1.6: Hot Module Replacement {#hot-module-replacement} -Meteor by default when using React is already adding for you a package called `hot-module-replacement`. This package updates the javascript modules in a running app that were modified during a rebuild. Reduces the feedback cycle while developing so you can view and test changes quicker (it even updates the app before the build has finished). You are also not going to lose the state, your app code will be updated and your state will be the same. +Starting from Meteor 3.4+, new apps use Rspack by default. It is configured with hot-module-replacement, including integrated react-refresh. This lets you see changes as you make them, even inside React components, without losing component state. + +In previous versions, Meteor already added the `hot-module-replacement` package when using React. This updates JavaScript modules in a running app during rebuilds. It reduces the feedback cycle during development so you can see and test changes faster, sometimes before the build finishes. Your app code updates while keeping the same state. In the next step, we are going to work with our MongoDB database to store our tasks. From 8c58cc139201125e19c4e25ad00a5621e61f4a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 14 Jan 2026 17:11:00 +0100 Subject: [PATCH 03/25] update HMR details for Meteor 3.4+ in tutorials --- .../docs/tutorials/react/1.creating-the-app.md | 8 ++++++-- .../docs/tutorials/solid/1.creating-the-app.md | 13 ++++++++++--- .../docs/tutorials/svelte/1.creating-the-app.md | 16 +++++++++++++--- 3 files changed, 29 insertions(+), 8 deletions(-) diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 7204184e99..2f1e28eb9d 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -115,8 +115,12 @@ Remove the `Hello` and `Info` from your `App` component, remember to also remove ### 1.6: Hot Module Replacement {#hot-module-replacement} -Starting from Meteor 3.4+, new apps use Rspack by default. It is configured with hot-module-replacement, including integrated react-refresh. This lets you see changes as you make them, even inside React components, without losing component state. +Starting from Meteor 3.4+, new apps use Rspack by default. It comes with built-in Hot Module Replacement (HMR) and includes `react-refresh` through a plugin. This lets you see changes as you make them, even inside React components, without losing component state. -In previous versions, Meteor already added the `hot-module-replacement` package when using React. This updates JavaScript modules in a running app during rebuilds. It reduces the feedback cycle during development so you can see and test changes faster, sometimes before the build finishes. Your app code updates while keeping the same state. +In previous versions, Meteor already added the `hot-module-replacement` Atmosphere package when using React. This updates JavaScript modules in a running app during rebuilds. It reduces the feedback cycle during development so you can see and test changes faster, sometimes before the build finishes. Your app code updates while keeping the same state. + +::: warning +`hot-module-replacement` can still be added to a Meteor app when using Meteor-Rspack with the `rspack` Atmosphere package enabled (3.4+). It acts as the HMR strategy for modules that are still compiled by the Meteor bundler, such as Atmosphere packages or any files explicitly kept on the Meteor bundler side. +::: In the next step, we are going to work with our MongoDB database to store our tasks. diff --git a/v3-docs/docs/tutorials/solid/1.creating-the-app.md b/v3-docs/docs/tutorials/solid/1.creating-the-app.md index 8ff1fce41f..2d83ca3136 100644 --- a/v3-docs/docs/tutorials/solid/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/solid/1.creating-the-app.md @@ -183,13 +183,20 @@ Now your app should scale properly on mobile devices and look like this: ### 1.7: Hot Module Replacement -Meteor uses a package called [hot-module-replacement](https://docs.meteor.com/packages/hot-module-replacement) which is already added for you. This package updates the javascript modules in a running app that were modified during a rebuild. Reduces the feedback cycle while developing, so you can view and test changes quicker (it even updates the app before the build has finished). You are also not going to lose the state, your app code will be updated, and your state will be the same. -By default, when using Solid with Meteor, reactivity is handled by integrating Solid's fine-grained signals and effects with Meteor's Tracker system. This allows real-time updates of the user's screen as data changes in the database without them having to manually refresh. You can achieve this using Tracker.autorun combined with Solid's createEffect or signals for seamless reactivity. +Starting from Meteor 3.4+, new apps use Rspack by default. It includes built-in Hot Module Replacement (HMR) and `solid-refresh`. This lets you see changes as you make them, even inside Solid components, without losing component state. + +If you use a previous Meteor version, you can opt in to the [hot-module-replacement](https://docs.meteor.com/packages/hot-module-replacement) which is already added for you. This package updates the javascript modules in a running app that were modified during a rebuild. Reduces the feedback cycle while developing, so you can view and test changes quicker (it even updates the app before the build has finished). You are also not going to lose the state, your app code will be updated, and your state will be the same. + +::: warning +`hot-module-replacement` can still be added to a Meteor app when using Meteor-Rspack with the `rspack` Atmosphere package enabled (3.4+). It acts as the HMR strategy for modules that are still compiled by the Meteor bundler, such as Atmosphere packages or any files explicitly kept on the Meteor bundler side. +::: + +By default, when using Solid with Meteor in previous versions, reactivity is handled by integrating Solid's fine-grained signals and effects with Meteor's Tracker system. This allows real-time updates of the user's screen as data changes in the database without them having to manually refresh. You can achieve this using Tracker.autorun combined with Solid's createEffect or signals for seamless reactivity. > You can read more about packages [here](https://docs.meteor.com/packages/). -You should also add the package [dev-error-overlay](https://atmospherejs.com/meteor/dev-error-overlay) at this point, so you can see the errors in your web browser. +You can also opt in to add the package [dev-error-overlay](https://atmospherejs.com/meteor/dev-error-overlay) when using previous versions, so you can see the errors in your web browser, so you can see the errors in your web browser. ```shell meteor add dev-error-overlay diff --git a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md index eaed84ca41..6bae721e34 100644 --- a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md @@ -166,13 +166,23 @@ Now your app should scale properly on mobile devices and look like this: ### 1.7: Hot Module Replacement -Meteor uses a package called [hot-module-replacement](https://docs.meteor.com/packages/hot-module-replacement) which is already added for you. This package updates the javascript modules in a running app that were modified during a rebuild. Reduces the feedback cycle while developing, so you can view and test changes quicker (it even updates the app before the build has finished). You are also not going to lose the state, your app code will be updated, and your state will be the same. +Starting from Meteor 3.4+, new apps use Rspack by default. It includes built-in Hot Module Replacement (HMR) and solid-refresh. This lets you see changes as you make them, even inside Solid components, without losing component state. -By default, when using Svelte with Meteor, reactivity is handled by packages like `zodern:melte` (which integrates Svelte with Meteor). This allows real-time updates of the users screen as data changes in the database without them having to manually refresh. You can read more about it [here](https://atmospherejs.com/zodern/melte). +If you use a previous Meteor version, you can opt in to the [hot-module-replacement](https://docs.meteor.com/packages/hot-module-replacement) which is already added for you. This package updates the javascript modules in a running app that were modified during a rebuild. Reduces the feedback cycle while developing, so you can view and test changes quicker (it even updates the app before the build has finished). You are also not going to lose the state, your app code will be updated, and your state will be the same. + +::: warning +`hot-module-replacement` can still be added to a Meteor app when using Meteor-Rspack with the `rspack` Atmosphere package enabled (3.4+). It acts as the HMR strategy for modules that are still compiled by the Meteor bundler, such as Atmosphere packages or any files explicitly kept on the Meteor bundler side. +::: + +By default, when using Svelte with previous Meteor versions, reactivity is handled by packages like `zodern:melte` (which integrates Svelte with Meteor). This allows real-time updates of the users screen as data changes in the database without them having to manually refresh. You can read more about it [here](https://atmospherejs.com/zodern/melte). > You can read more about packages [here](https://docs.meteor.com/packages/). -You should also add the package [dev-error-overlay](https://atmospherejs.com/meteor/dev-error-overlay) at this point, so you can see the errors in your web browser. +::: warning +`zodern:melte` package is not compatible with Meteor Rspack apps (Meteor 3.4+ using the rspack package). While this means losing some of the sugar helpers provided by the library, it also brings advantages, such as support for the latest versions of Svelte 5 and newer ecosystem implementations. The community may help implement these helpers decoupled from Meteor's build system for later adoption with Meteor-Rspack. +::: + +You can also opt in to add the package [dev-error-overlay](https://atmospherejs.com/meteor/dev-error-overlay) when using previous versions, so you can see the errors in your web browser. ```shell meteor add dev-error-overlay From 13369a979a711b338c58d18e2042e1946ab28943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 13:17:23 +0100 Subject: [PATCH 04/25] update React tutorial to include Rspack and Meteor bundler details --- v3-docs/docs/tutorials/react/1.creating-the-app.md | 9 ++++++++- v3-docs/docs/tutorials/react/9.next-steps.md | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 2f1e28eb9d..348ff65ba0 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -18,7 +18,14 @@ The easiest way to setup Meteor with React is by using the command `meteor creat meteor create simple-todos-react ``` -Meteor will create all the necessary files for you. +Meteor will create all the necessary files for you. By default, Meteor generates a project using React and Rspack as the bundler, and this is the approach walked through in this tutorial. Using the Rspack bundler is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. + +We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. + +::: info +⚡ You can find the final version of this React app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). +☄️ You can find the final version of this React app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/react/9.next-steps.md b/v3-docs/docs/tutorials/react/9.next-steps.md index 4a0909dd5d..665c3b6ad7 100644 --- a/v3-docs/docs/tutorials/react/9.next-steps.md +++ b/v3-docs/docs/tutorials/react/9.next-steps.md @@ -5,7 +5,8 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and React. ::: info -You can find the final version of this app in our [GitHub repository](https://github.com/meteor/meteor3-react). +⚡ You can find the final version of this React app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). +☄️ You can find the final version of this React app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: Here are some options for what you can do next: From 2936b199ac2b89cc7bd4c9c9e9e15932b59cb5b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 13:46:44 +0100 Subject: [PATCH 05/25] update React tutorial to include Rspack and Meteor bundler details --- v3-docs/docs/tutorials/react/1.creating-the-app.md | 5 +++-- v3-docs/docs/tutorials/react/9.next-steps.md | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 348ff65ba0..6fcc328140 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -23,8 +23,9 @@ Meteor will create all the necessary files for you. By default, Meteor generates We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -⚡ You can find the final version of this React app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). -☄️ You can find the final version of this React app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +⚡ You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). + +☄️ You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/react/9.next-steps.md b/v3-docs/docs/tutorials/react/9.next-steps.md index 665c3b6ad7..8335d1fd15 100644 --- a/v3-docs/docs/tutorials/react/9.next-steps.md +++ b/v3-docs/docs/tutorials/react/9.next-steps.md @@ -5,8 +5,9 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and React. ::: info -⚡ You can find the final version of this React app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). -☄️ You can find the final version of this React app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +⚡ You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). + +☄️ You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: Here are some options for what you can do next: From 2591862ca597e23835cb12915b8bd7e9f3e559a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 13:54:46 +0100 Subject: [PATCH 06/25] update React tutorial to include Rspack and Meteor bundler details --- v3-docs/docs/tutorials/react/1.creating-the-app.md | 6 ++++-- v3-docs/docs/tutorials/react/9.next-steps.md | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 6fcc328140..3a641df6c8 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -23,9 +23,11 @@ Meteor will create all the necessary files for you. By default, Meteor generates We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -⚡ You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). +::: -☄️ You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/react/9.next-steps.md b/v3-docs/docs/tutorials/react/9.next-steps.md index 8335d1fd15..c6b0588bbb 100644 --- a/v3-docs/docs/tutorials/react/9.next-steps.md +++ b/v3-docs/docs/tutorials/react/9.next-steps.md @@ -5,9 +5,11 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and React. ::: info -⚡ You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). +::: -☄️ You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: Here are some options for what you can do next: From c27baf683c66b888ca631c478edb176cf4abdf15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 14:13:16 +0100 Subject: [PATCH 07/25] update Vue tutorial references and adopt Rspack bundler --- tools/static-assets/skel-vue/README.md | 4 ++-- v3-docs/docs/.vitepress/config.mts | 8 ++++---- .../docs/tutorials/react/1.creating-the-app.md | 2 +- .../vue/meteorjs3-vue3-vue-meteor-tracker.md | 18 ++++++++++++++---- 4 files changed, 21 insertions(+), 11 deletions(-) diff --git a/tools/static-assets/skel-vue/README.md b/tools/static-assets/skel-vue/README.md index 7ba6226cb0..d0a718f129 100644 --- a/tools/static-assets/skel-vue/README.md +++ b/tools/static-assets/skel-vue/README.md @@ -1,4 +1,4 @@ -# Meteor + Vue3 + Vite +# Meteor + Vue3 This is a simple example of how to use Vue3 with Meteor. @@ -12,7 +12,7 @@ This is a simple example of how to use Vue3 with Meteor. ## Libraries used - [Vue3](https://v3.vuejs.org/) -- [Vite](https://vitejs.dev/) +- [Rspack](https://rspack.dev/) - [Vue Router](https://next.router.vuejs.org/) - [Meteor](https://www.meteor.com/) - [Vue Meteor Tracker](https://github.com/meteor-vue/vue-meteor-tracker) diff --git a/v3-docs/docs/.vitepress/config.mts b/v3-docs/docs/.vitepress/config.mts index 8f4f876648..2bfc166937 100644 --- a/v3-docs/docs/.vitepress/config.mts +++ b/v3-docs/docs/.vitepress/config.mts @@ -37,8 +37,8 @@ export default defineConfig({ link: "/tutorials/react/index", }, { - text: "Meteor + Vue + vue-meteor-tracker", - link: "/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker", + text: "Meteor + Vue", + link: "/tutorials/vue/meteorjs3-vue3", }, { text: "Meteor.js 3 + Solid", @@ -487,8 +487,8 @@ export default defineConfig({ link: "/tutorials/react/index", }, { - link: "/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker", - text: "Meteor + Vue + vue-meteor-tracker", + link: "/tutorials/vue/meteorjs3-vue3", + text: "Meteor + Vue", }, { text: "Meteor.js 3 + Solid", diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 3a641df6c8..2b181f5a9d 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -18,7 +18,7 @@ The easiest way to setup Meteor with React is by using the command `meteor creat meteor create simple-todos-react ``` -Meteor will create all the necessary files for you. By default, Meteor generates a project using React and Rspack as the bundler, and this is the approach walked through in this tutorial. Using the Rspack bundler is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. +Meteor will create all the necessary files for you. By default, Meteor generates a project using React and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. diff --git a/v3-docs/docs/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.md b/v3-docs/docs/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.md index 60280b4656..4da5686527 100644 --- a/v3-docs/docs/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.md +++ b/v3-docs/docs/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.md @@ -36,13 +36,19 @@ To set up Meteor with Vue easily, run the following command, replacing `simple-t meteor create --vue simple-todos-vue ``` +Meteor will create all the necessary files for you. The `--vue` flag generates a project using Vue, Rspack and Tailwind CSS, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. + +We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. + ::: info -You can find the final version of this app in our [GitHub repository](https://github.com/meteor/meteor3-vue3). +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack). ::: -Meteor will create all the necessary files for you. The `--vue` flag generates a project using Vue, Vite and Tailwind CSS. +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). +::: -You will find the `client` directory contains files for your client-side setup. Inside, there should be an empty `main.js` file required for Meteor's import mode. However, with Vite, the entry point is set in the `vite.config.js` file, pointing to `imports/ui/main.js`, which is where Meteor renders the main component. +You will find the `client` directory contains files for your client-side setup. Inside, you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. Check the server directory for the server setup where you will see `server/main.js` populating your MongoDB database with some default data. There's no need to install MongoDB separately, as Meteor includes an embedded version. @@ -1366,7 +1372,11 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Vue. ::: info -You can find the final version of this app in our [GitHub repository](https://github.com/meteor/meteor3-vue3). +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack). +::: + +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). ::: Here are some options for what you can do next: From 6950c8a9e71dc01652d3abbfcd5537a3b49cdbb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 14:16:27 +0100 Subject: [PATCH 08/25] update Vue tutorial references and adopt Rspack bundler --- .../{meteorjs3-vue3-vue-meteor-tracker.md => meteorjs3-vue3.md} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename v3-docs/docs/tutorials/vue/{meteorjs3-vue3-vue-meteor-tracker.md => meteorjs3-vue3.md} (99%) diff --git a/v3-docs/docs/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.md b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md similarity index 99% rename from v3-docs/docs/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.md rename to v3-docs/docs/tutorials/vue/meteorjs3-vue3.md index 4da5686527..10fd072499 100644 --- a/v3-docs/docs/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.md +++ b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md @@ -1,4 +1,4 @@ -# Meteor.js 3 + Vue 3 and `vue-meteor-tracker` +# Meteor.js 3 + Vue 3 In this tutorial, we will create a simple To-Do app using [Vue 3](https://vuejs.org/) and Meteor 3.0. Meteor works well with other frameworks like [Blaze](https://www.blazejs.org/), [React](https://react.dev/), [Solid](https://www.solidjs.com/), and [Svelte](https://svelte.dev/). From c928e2838348aec2c3f89aea4433d4bd04f756b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 14:22:43 +0100 Subject: [PATCH 09/25] update Vue tutorial references and adopt Rspack bundler --- README.md | 2 +- v3-docs/docs/about/web-apps.md | 2 +- v3-docs/docs/about/what-is.md | 2 +- v3-docs/docs/cli/index.md | 26 +++++++++++++------------- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 11aa1c4c6c..e37bdc7cae 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ How about trying a tutorial to get started with your favorite technology? | [ React](https://docs.meteor.com/tutorials/react/) | | - | | [ Blaze](https://blaze-tutorial.meteor.com/) | -| [ Vue](https://docs.meteor.com/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.html) | +| [ Vue](https://docs.meteor.com/tutorials/vue/meteorjs3-vue3.html) | # 🚀 Quick Start diff --git a/v3-docs/docs/about/web-apps.md b/v3-docs/docs/about/web-apps.md index b2fe9329d6..c3f978d10a 100644 --- a/v3-docs/docs/about/web-apps.md +++ b/v3-docs/docs/about/web-apps.md @@ -49,7 +49,7 @@ If you want detailed help about a specific command, run `meteor help `. ## Next Steps -- Follow the [React](/tutorials/react/index.html) or [Vue](/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.html) tutorials. New tutorials are coming soon. +- Follow the [React](/tutorials/react/index.html) or [Vue](/tutorials/vue/meteorjs3-vue3.html) tutorials. New tutorials are coming soon. - Learn about [Modern Build Stack](/about/modern-build-stack.md) for faster development, smaller bundle sizes, and more. - Read about [Cordova for Mobile Apps](/about/cordova.html). - Explore the [Meteor Guide](https://guide.meteor.com/). diff --git a/v3-docs/docs/about/what-is.md b/v3-docs/docs/about/what-is.md index b87832fa90..2e760549b2 100644 --- a/v3-docs/docs/about/what-is.md +++ b/v3-docs/docs/about/what-is.md @@ -29,7 +29,7 @@ Meteor is a full-stack JavaScript platform for developing modern web and mobile - Start by learning how to install Meteor in the [Installation Section](/about/install.html). -- The tutorials are the perfect place to start. Build a simple app to manage a task list! Available for [React](/tutorials/react/index.html), and [Vue 3](/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.html). Blaze and Svelte tutorials are coming soon. +- The tutorials are the perfect place to start. Build a simple app to manage a task list! Available for [React](/tutorials/react/index.html), and [Vue 3](/tutorials/vue/meteorjs3-vue3.html). Blaze and Svelte tutorials are coming soon. - Participate in Meteor's fully professional, engaging and interactive online school. Join [Meteor University](https://university.meteor.com/). Our courses cover Meteor 2 but most of the content is still relevant. diff --git a/v3-docs/docs/cli/index.md b/v3-docs/docs/cli/index.md index 198004f139..0e73eb614c 100644 --- a/v3-docs/docs/cli/index.md +++ b/v3-docs/docs/cli/index.md @@ -268,20 +268,20 @@ If you run `meteor create` without arguments, Meteor will launch an interactive ### Application Types -| Option | Description | Tutorial / Example | -|------------------|------------------------------|----------| +| Option | Description | Tutorial / Example | +|------------------|-------------------------|----------| | `--react` | Create a React app (default) | [Meteor 3 with React](https://docs.meteor.com/tutorials/react/), [Meteor 2 with React](https://react-tutorial.meteor.com/) | -| `--vue` | Vue 3 + Tailwind CSS + Vite | [Meteor 3 with Vue](https://docs.meteor.com/tutorials/vue/meteorjs3-vue3-vue-meteor-tracker.html), [Meteor 2 with Vue](https://vue3-tutorial.meteor.com/) | -| `--svelte` | Svelte | [Meteor 2 with Svelte](https://svelte-tutorial.meteor.com/) | -| `--blaze` | Basic Blaze app | [Meteor 2 with Blaze](https://blaze-tutorial.meteor.com/) | -| `--solid` | Solid + Vite | [Meteor 2 with Solid Example](https://github.com/fredmaiaarantes/meteor-solid-app/releases/tag/milestone-2.0) | -| `--apollo` | React + Apollo (GraphQL) | [Meteor 2 with GraphQL](https://react-tutorial.meteor.com/simple-todos-graphql/) | -| `--typescript` | React + TypeScript | [TypeScript Guide](https://guide.meteor.com/build-tool.html#typescript) | -| `--tailwind` | React + Tailwind CSS | - | -| `--chakra-ui` | React + Chakra UI | [Simple Tasks Example](https://github.com/fredmaiaarantes/simpletasks) | - | `--coffeescript` | CoffeeScript | - | - | `--babel` | React with Babel support | - | -| `--angular` | Angular + Typescript | - | +| `--vue` | Vue 3 + Tailwind CSS | [Meteor 3 with Vue](https://docs.meteor.com/tutorials/vue/meteorjs3-vue3.html), [Meteor 2 with Vue](https://vue3-tutorial.meteor.com/) | +| `--svelte` | Svelte | [Meteor 2 with Svelte](https://svelte-tutorial.meteor.com/) | +| `--blaze` | Basic Blaze app | [Meteor 2 with Blaze](https://blaze-tutorial.meteor.com/) | +| `--solid` | Solid | [Meteor 2 with Solid Example](https://github.com/fredmaiaarantes/meteor-solid-app/releases/tag/milestone-2.0) | +| `--apollo` | React + Apollo (GraphQL) | [Meteor 2 with GraphQL](https://react-tutorial.meteor.com/simple-todos-graphql/) | +| `--typescript` | React + TypeScript | [TypeScript Guide](https://guide.meteor.com/build-tool.html#typescript) | +| `--tailwind` | React + Tailwind CSS | - | +| `--chakra-ui` | React + Chakra UI | [Simple Tasks Example](https://github.com/fredmaiaarantes/simpletasks) | + | `--coffeescript` | CoffeeScript | - | + | `--babel` | React with Babel support | - | +| `--angular` | Angular + Typescript | - | ### Project Structure Options From adc156e45bf02dd0dddb0c6675950142cbebf255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 14:25:06 +0100 Subject: [PATCH 10/25] update Vue tutorial references and adopt Rspack bundler --- v3-docs/docs/tutorials/vue/meteorjs3-vue3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md index 10fd072499..a137679acf 100644 --- a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md +++ b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md @@ -58,7 +58,7 @@ To run your app, use: meteor npm run start ``` -Your Vue code will be located in the `imports/ui directory`, with `App.vue` as the root component of your app. +Your Vue code will be located in the `imports/ui` directory, with `App.vue` as the root component of your app. Take a moment to explore the files created by Meteor. You don’t have to understand everything right away, but it helps to know where they are. From 6c91db197c611761647d8e53ac3c433e2a284d84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 15:44:31 +0100 Subject: [PATCH 11/25] update Solid tutorial references and adopt Rspack bundler --- tools/static-assets/skel-vue/README.md | 2 +- v3-docs/docs/.vitepress/config.mts | 4 ++-- v3-docs/docs/tutorials/solid/1.creating-the-app.md | 12 +++++++++++- v3-docs/docs/tutorials/solid/9.next-steps.md | 6 +++++- v3-docs/docs/tutorials/solid/index.md | 2 +- v3-docs/docs/tutorials/vue/meteorjs3-vue3.md | 1 + 6 files changed, 21 insertions(+), 6 deletions(-) diff --git a/tools/static-assets/skel-vue/README.md b/tools/static-assets/skel-vue/README.md index d0a718f129..716f664502 100644 --- a/tools/static-assets/skel-vue/README.md +++ b/tools/static-assets/skel-vue/README.md @@ -1,4 +1,4 @@ -# Meteor + Vue3 +# Meteor.js 3 + Vue3 This is a simple example of how to use Vue3 with Meteor. diff --git a/v3-docs/docs/.vitepress/config.mts b/v3-docs/docs/.vitepress/config.mts index 2bfc166937..09f93cf97f 100644 --- a/v3-docs/docs/.vitepress/config.mts +++ b/v3-docs/docs/.vitepress/config.mts @@ -37,7 +37,7 @@ export default defineConfig({ link: "/tutorials/react/index", }, { - text: "Meteor + Vue", + text: "Meteor.js 3 + Vue", link: "/tutorials/vue/meteorjs3-vue3", }, { @@ -487,8 +487,8 @@ export default defineConfig({ link: "/tutorials/react/index", }, { + text: "Meteor.js 3 + Vue", link: "/tutorials/vue/meteorjs3-vue3", - text: "Meteor + Vue", }, { text: "Meteor.js 3 + Solid", diff --git a/v3-docs/docs/tutorials/solid/1.creating-the-app.md b/v3-docs/docs/tutorials/solid/1.creating-the-app.md index 2d83ca3136..cfef837166 100644 --- a/v3-docs/docs/tutorials/solid/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/solid/1.creating-the-app.md @@ -12,7 +12,17 @@ The easiest way to setup Meteor with Solid is by using the command `meteor creat meteor create --solid simple-todos-solid ``` -Meteor will create all the necessary files for you. +Meteor will create all the necessary files for you. By default, Meteor generates a project using Solid and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. + +We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. + +::: info +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-rspack). +::: + +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). +::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/solid/9.next-steps.md b/v3-docs/docs/tutorials/solid/9.next-steps.md index 2d8aa59038..807b8c2890 100644 --- a/v3-docs/docs/tutorials/solid/9.next-steps.md +++ b/v3-docs/docs/tutorials/solid/9.next-steps.md @@ -5,7 +5,11 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Solid. ::: info -You can find the final version of this app in our [GitHub repository](https://github.com/meteor/meteor3-solid). +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-rspack). +::: + +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/solid/index.md b/v3-docs/docs/tutorials/solid/index.md index 0ea7dd52a5..3e041903a7 100644 --- a/v3-docs/docs/tutorials/solid/index.md +++ b/v3-docs/docs/tutorials/solid/index.md @@ -2,7 +2,7 @@ In this tutorial, we will create a simple To-Do app using [Solid](https://www.solidjs.com/) and Meteor 3.0. Meteor works well with other frameworks like [React](https://react.dev/), [Vue 3](https://vuejs.org/), [Svelte](https://svelte.dev/), and [Blaze](https://www.blazejs.org/). -Solid is a modern UI framework that compiles your reactive code to highly efficient DOM updates at runtime, resulting in smaller bundles and exceptional performance without a virtual DOM. Launched in 2020, it has gained popularity for its fine-grained reactivity, simplicity, and lightweight nature. Compared to older approaches, Solid eliminates much of the boilerplate and runtime overhead found in frameworks like React by using a compiler that optimizes updates precisely where needed. It employs a declarative JSX syntax with built-in primitives like signals for state management, effects, and resources that can be seamlessly integrated with Meteor's reactive data sources like[Tracker](https://docs.meteor.com/api/tracker.html) and [Minimongo](https://docs.meteor.com/api/collections.html). This means your UI updates automatically as data changes, without manual DOM manipulation. +Solid is a modern UI framework that compiles your reactive code to highly efficient DOM updates at runtime, resulting in smaller bundles and exceptional performance without a virtual DOM. Launched in 2020, it has gained popularity for its fine-grained reactivity, simplicity, and lightweight nature. Compared to older approaches, Solid eliminates much of the boilerplate and runtime overhead found in frameworks like React by using a compiler that optimizes updates precisely where needed. It employs a declarative JSX syntax with built-in primitives like signals for state management, effects, and resources that can be seamlessly integrated with Meteor's reactive data sources like [Tracker](https://docs.meteor.com/api/tracker.html) and [Minimongo](https://docs.meteor.com/api/collections.html). This means your UI updates automatically as data changes, without manual DOM manipulation. If you're new and not sure what UI framework to use, Solid is a great place to start—it's easy to learn (especially if you're familiar with React-like JSX), highly performant with fine-grained reactivity, and has a growing community. You can still leverage Meteor packages designed for other frameworks, like [accounts-ui](https://docs.meteor.com/packages/accounts-ui), even in a Solid app. diff --git a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md index a137679acf..369a5993bf 100644 --- a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md +++ b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md @@ -5,6 +5,7 @@ In this tutorial, we will create a simple To-Do app using [Vue 3](https://vuejs. Vue.js is a powerful JavaScript framework for making user interfaces. It helps you build interactive applications by using templates that connect to data and update automatically when the data changes. Vue.js templates use a simple syntax similar to HTML and work with Vue’s reactivity system to show components in the browser. To start building your Vue.js app, you'll need a code editor. If you're unsure which one to choose, [Visual Studio Code](https://code.visualstudio.com/) is a good option. + :::warning This tutorial uses the `vue-meteor-tracker` package, which is currently in beta and does not support async calls yet. However, it is still a valuable package, and we hope it will be updated soon. We are also working on a new tutorial that will use Meteor core packages instead. ::: From 848ab5899c3854a48509b1ad01645c79c41d5a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 15:53:57 +0100 Subject: [PATCH 12/25] update Blaze tutorial references and adopt Rspack bundler --- v3-docs/docs/tutorials/blaze/1.creating-the-app.md | 12 +++++++++++- v3-docs/docs/tutorials/blaze/9.next-steps.md | 6 +++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md index 5434274dbd..bccd4d3258 100644 --- a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md @@ -12,7 +12,17 @@ The easiest way to setup Meteor with Blaze is by using the command `meteor creat meteor create --blaze simple-todos-blaze ``` -Meteor will create all the necessary files for you. +Meteor will create all the necessary files for you. By default, Meteor generates a project using Blaze and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. + +We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. + +::: info +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack). +::: + +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). +::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/blaze/9.next-steps.md b/v3-docs/docs/tutorials/blaze/9.next-steps.md index d2b46581a7..40979596a5 100644 --- a/v3-docs/docs/tutorials/blaze/9.next-steps.md +++ b/v3-docs/docs/tutorials/blaze/9.next-steps.md @@ -5,7 +5,11 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Blaze. ::: info -You can find the final version of this app in our [GitHub repository](https://github.com/meteor/meteor3-blaze). +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack). +::: + +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). ::: Here are some options for what you can do next: From e36dcc38cdf7e0ac9ec3a1058d080ec4f3401d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 16:38:02 +0100 Subject: [PATCH 13/25] update Svelte tutorial references and adopt Rspack bundler --- .../tutorials/blaze/1.creating-the-app.md | 2 +- .../tutorials/solid/1.creating-the-app.md | 2 +- .../tutorials/svelte/1.creating-the-app.md | 42 +++++++++-- .../docs/tutorials/svelte/2.collections.md | 40 ++++++++-- .../tutorials/svelte/3.forms-and-events.md | 42 ++++++++++- .../tutorials/svelte/4.update-and-remove.md | 43 +++++++++-- v3-docs/docs/tutorials/svelte/5.styles.md | 30 +++++++- .../docs/tutorials/svelte/6.filter-tasks.md | 74 +++++++++++++++---- .../svelte/7.adding-user-accounts.md | 64 ++++++++++++---- v3-docs/docs/tutorials/svelte/index.md | 2 +- 10 files changed, 285 insertions(+), 56 deletions(-) diff --git a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md index bccd4d3258..89ae31870f 100644 --- a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md @@ -12,7 +12,7 @@ The easiest way to setup Meteor with Blaze is by using the command `meteor creat meteor create --blaze simple-todos-blaze ``` -Meteor will create all the necessary files for you. By default, Meteor generates a project using Blaze and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. +Meteor will create all the necessary files for you. With `--blaze` option, Meteor generates a project using Blaze and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. diff --git a/v3-docs/docs/tutorials/solid/1.creating-the-app.md b/v3-docs/docs/tutorials/solid/1.creating-the-app.md index cfef837166..e50d8f1a4c 100644 --- a/v3-docs/docs/tutorials/solid/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/solid/1.creating-the-app.md @@ -12,7 +12,7 @@ The easiest way to setup Meteor with Solid is by using the command `meteor creat meteor create --solid simple-todos-solid ``` -Meteor will create all the necessary files for you. By default, Meteor generates a project using Solid and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. +Meteor will create all the necessary files for you. With `--solid` option, Meteor generates a project using Solid and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. diff --git a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md index 6bae721e34..2fb6784113 100644 --- a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md @@ -12,7 +12,17 @@ The easiest way to setup Meteor with Svelte is by using the command `meteor crea meteor create --svelte simple-todos-svelte ``` -Meteor will create all the necessary files for you. +Meteor will create all the necessary files for you. With `--svelte` option, Meteor generates a project using Svelte 5 and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. + +We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. + +::: info +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack). +::: + +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). +::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. @@ -56,11 +66,29 @@ The `client/main.js` file should import and render the main Svelte component: ```js [client/main.js] import { Meteor } from 'meteor/meteor'; import App from '../imports/ui/App.svelte'; +import { mount, unmount } from 'svelte'; + +let app; // will hold the mounted instance Meteor.startup(() => { - new App({ - target: document.getElementById('app') - }); + const target = document.getElementById('app'); + + // (Re)mount + app = mount(App, { target }); + + // Clean up on HMR so we don't double-mount + if (import.meta.webpackHot) { + import.meta.webpackHot.accept(); + import.meta.webpackHot.dispose(() => { + if (app) { + // pass the instance you got from mount() + unmount(app, { outro: false }); // set outro:true if you want transitions + app = null; + } + // optional: clear target to be extra safe + target.innerHTML = ''; + }); + } }); ``` ::: @@ -119,7 +147,7 @@ tag. In the code above, we defined a `tasks` array directly in the component. In {#each tasks as task} to iterate over the array and display each task's `text` property using {task.text} -For Meteor-specific reactivity (like subscriptions and collections), Svelte in Meteor uses special syntax like `$m:` for reactive statements that integrate with Meteor's Tracker. We'll cover that in later steps. +For Meteor-specific reactivity (like subscriptions and collections), Svelte in Meteor uses Tracker and reactive variables to integrate with Meteor's reactivity system. We'll cover that in later steps. ### 1.6: Mobile Look @@ -174,12 +202,12 @@ If you use a previous Meteor version, you can opt in to the [hot-module-replacem `hot-module-replacement` can still be added to a Meteor app when using Meteor-Rspack with the `rspack` Atmosphere package enabled (3.4+). It acts as the HMR strategy for modules that are still compiled by the Meteor bundler, such as Atmosphere packages or any files explicitly kept on the Meteor bundler side. ::: -By default, when using Svelte with previous Meteor versions, reactivity is handled by packages like `zodern:melte` (which integrates Svelte with Meteor). This allows real-time updates of the users screen as data changes in the database without them having to manually refresh. You can read more about it [here](https://atmospherejs.com/zodern/melte). +In previous Meteor versions, reactivity with Svelte was often handled by packages like `zodern:melte`, which provided sugar syntax like `$m:` for reactive statements. However, with Meteor 3.4+ using the Rspack bundler, we now use a more standard approach that's compatible with the latest Svelte versions. > You can read more about packages [here](https://docs.meteor.com/packages/). ::: warning -`zodern:melte` package is not compatible with Meteor Rspack apps (Meteor 3.4+ using the rspack package). While this means losing some of the sugar helpers provided by the library, it also brings advantages, such as support for the latest versions of Svelte 5 and newer ecosystem implementations. The community may help implement these helpers decoupled from Meteor's build system for later adoption with Meteor-Rspack. +`zodern:melte` package is not compatible with Meteor Rspack apps (Meteor 3.4+ using the rspack package). This transition away from `zodern:melte` brings significant advantages, including support for the latest versions of Svelte 5 and better compatibility with the broader Svelte ecosystem. While we lose some sugar syntax helpers, we gain a more standard and future-proof implementation that will evolve alongside Svelte itself. ::: You can also opt in to add the package [dev-error-overlay](https://atmospherejs.com/meteor/dev-error-overlay) when using previous versions, so you can see the errors in your web browser. diff --git a/v3-docs/docs/tutorials/svelte/2.collections.md b/v3-docs/docs/tutorials/svelte/2.collections.md index d74ea0aa64..9e92419acc 100644 --- a/v3-docs/docs/tutorials/svelte/2.collections.md +++ b/v3-docs/docs/tutorials/svelte/2.collections.md @@ -73,11 +73,35 @@ In your `App.svelte` file, import the `TasksCollection` file and, instead of ret ```html [imports/ui/App.svelte]
@@ -135,14 +159,20 @@ const insertTask = taskText => TasksCollection.insertAsync({ text: taskText }); ``` ::: -The only thing left is subscribe to this publication, which we've already added in `App.svelte` using: +The only thing left is subscribe to this publication, which we've already added in `App.svelte` using Tracker and lifecycle hooks: ::: code-group ```javascript [imports/ui/App.svelte] ... -$m: handle = Meteor.subscribe("tasks"); +onMount(() => { + handle = Meteor.subscribe("tasks"); + + computation = Tracker.autorun(() => { + // Reactive code here + }); +}); ... ``` diff --git a/v3-docs/docs/tutorials/svelte/3.forms-and-events.md b/v3-docs/docs/tutorials/svelte/3.forms-and-events.md index bfb570033f..2e745059ef 100644 --- a/v3-docs/docs/tutorials/svelte/3.forms-and-events.md +++ b/v3-docs/docs/tutorials/svelte/3.forms-and-events.md @@ -53,6 +53,8 @@ Altogether, our file should look like: ```html [imports/ui/App.svelte]
@@ -205,7 +229,17 @@ Now you just need to make a change that will make users happy: we need to show t diff --git a/v3-docs/docs/tutorials/svelte/4.update-and-remove.md b/v3-docs/docs/tutorials/svelte/4.update-and-remove.md index 48d7c3707a..82ef1f5e55 100644 --- a/v3-docs/docs/tutorials/svelte/4.update-and-remove.md +++ b/v3-docs/docs/tutorials/svelte/4.update-and-remove.md @@ -38,6 +38,8 @@ Now, update `App.svelte` to import and use the `Task` component in the import { Meteor } from "meteor/meteor"; + import { Tracker } from "meteor/tracker"; + import { onMount, onDestroy } from "svelte"; import { TasksCollection } from "../api/TasksCollection"; import "/imports/api/TasksMethods"; import Task from "./Task.svelte"; // [!code highlight] @@ -55,9 +57,31 @@ Now, update `App.svelte` to import and use the `Task` component in the { + handle = Meteor.subscribe("tasks"); + + computation = Tracker.autorun(() => { + subIsReady = handle.ready(); + tasks = TasksCollection.find({}, { sort: { createdAt: -1 } }).fetch(); + }); + + return () => { + computation?.stop?.(); + handle?.stop?.(); + }; + }); + + onDestroy(() => { + computation?.stop?.(); + handle?.stop?.(); + });
@@ -122,7 +146,17 @@ If your computer is fast enough, it's possible that when it sets up the default @@ -194,4 +228,3 @@ In a collection, every inserted document has a unique `_id` field that can refer and other fields like `isChecked` and `text`. We use these to call Meteor methods for updating or removing the specific task. In the next step, we are going to improve the look of your app using CSS with Flexbox. - diff --git a/v3-docs/docs/tutorials/svelte/5.styles.md b/v3-docs/docs/tutorials/svelte/5.styles.md index bdfb613df4..bc3c1e4f6b 100644 --- a/v3-docs/docs/tutorials/svelte/5.styles.md +++ b/v3-docs/docs/tutorials/svelte/5.styles.md @@ -157,6 +157,8 @@ Now you need to add some elements around your components. You are going to add a ```html [imports/ui/App.svelte]
diff --git a/v3-docs/docs/tutorials/svelte/6.filter-tasks.md b/v3-docs/docs/tutorials/svelte/6.filter-tasks.md index 82035aca7d..f68828a848 100644 --- a/v3-docs/docs/tutorials/svelte/6.filter-tasks.md +++ b/v3-docs/docs/tutorials/svelte/6.filter-tasks.md @@ -37,9 +37,31 @@ We'll add a `hideCompleted` variable to the `App.svelte` component and a functio hideCompleted = !hideCompleted; // [!code highlight] } // [!code highlight] - $m: handle = Meteor.subscribe("tasks"); - $m: subIsReady = handle.ready(); - $m: tasks = TasksCollection.find({}, { sort: { createdAt: -1, _id: -1 } }).fetch(); + // Reactive state + let handle; + let subIsReady = false; + let tasks = []; + + let computation; + + onMount(() => { + handle = Meteor.subscribe("tasks"); + + computation = Tracker.autorun(() => { + subIsReady = handle.ready(); + tasks = TasksCollection.find({}, { sort: { createdAt: -1, _id: -1 } }).fetch(); + }); + + return () => { + computation?.stop?.(); + handle?.stop?.(); + }; + }); + + onDestroy(() => { + computation?.stop?.(); + handle?.stop?.(); + }); @@ -122,6 +144,8 @@ Now, update the reactive tasks fetch to apply the filter if `hideCompleted` is t ```html [imports/ui/App.svelte] diff --git a/v3-docs/docs/tutorials/svelte/7.adding-user-accounts.md b/v3-docs/docs/tutorials/svelte/7.adding-user-accounts.md index b6318a85d1..30d1902382 100644 --- a/v3-docs/docs/tutorials/svelte/7.adding-user-accounts.md +++ b/v3-docs/docs/tutorials/svelte/7.adding-user-accounts.md @@ -134,9 +134,19 @@ To achieve this, we will use a conditional block in `App.svelte`: ```html [imports/ui/App.svelte]
@@ -289,7 +299,7 @@ Meteor.publish("tasks", function () { if (userId) { result = TasksCollection.find({ userId }); } - + return result; }); ``` @@ -303,22 +313,44 @@ Now let's check if we have a `currentUser` before trying to fetch any data. Upda diff --git a/v3-docs/docs/tutorials/svelte/index.md b/v3-docs/docs/tutorials/svelte/index.md index 6171827fc0..b5a4ab6ee2 100644 --- a/v3-docs/docs/tutorials/svelte/index.md +++ b/v3-docs/docs/tutorials/svelte/index.md @@ -1,6 +1,6 @@ # Meteor.js 3 + Svelte -In this tutorial, we will create a simple To-Do app using [Svelte](https://svelte.dev/) and Meteor 3.0. Meteor works well with other frameworks like [React](https://react.dev/), [Vue 3](https://vuejs.org/), [Solid](https://www.solidjs.com/), and [Blaze](https://www.blazejs.org/). +In this tutorial, we will create a simple To-Do app using [Svelte v5](https://svelte.dev/) and Meteor 3.0. Meteor works well with other frameworks like [React](https://react.dev/), [Vue 3](https://vuejs.org/), [Solid](https://www.solidjs.com/), and [Blaze](https://www.blazejs.org/). Svelte is a modern UI framework that compiles your code to highly efficient vanilla JavaScript at build time, resulting in smaller bundles and faster runtime performance. Launched in 2016, it has gained popularity for its simplicity and reactivity without a virtual DOM. Compared to older approaches, Svelte eliminates much of the boilerplate and runtime overhead found in frameworks like React. It uses a declarative syntax with built-in state management, transitions, and stores that can be integrated with Meteor's reactive data sources like [Tracker](https://docs.meteor.com/api/tracker.html) and [Minimongo](https://docs.meteor.com/api/collections.html). This means your UI updates automatically as data changes, without manual DOM manipulation. From 1de9f34f552a9f6e1dfb20509836398c233e7d16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 16:38:53 +0100 Subject: [PATCH 14/25] update Svelte tutorial references and adopt Rspack bundler --- v3-docs/docs/tutorials/svelte/9.next-steps.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/v3-docs/docs/tutorials/svelte/9.next-steps.md b/v3-docs/docs/tutorials/svelte/9.next-steps.md index fec785efbc..b504a491a2 100644 --- a/v3-docs/docs/tutorials/svelte/9.next-steps.md +++ b/v3-docs/docs/tutorials/svelte/9.next-steps.md @@ -5,7 +5,11 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Svelte. ::: info -You can find the final version of this app in our [GitHub repository](https://github.com/meteor/meteor3-svelte). +You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack). +::: + +::: info +You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). ::: Here are some options for what you can do next: From 819b1549f9c5365dcf73cd5d2d2db7b960c697ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 16:54:53 +0100 Subject: [PATCH 15/25] update build plugins for packages docs to reflect Rspack limitations in Meteor 3.4+ --- v3-docs/docs/api/package.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/v3-docs/docs/api/package.md b/v3-docs/docs/api/package.md index a0735be02c..0dab62c5d3 100644 --- a/v3-docs/docs/api/package.md +++ b/v3-docs/docs/api/package.md @@ -167,6 +167,10 @@ This way we avoid having to call a specific code before another specific code in ## Build Plugins API {#build-plugin-api} +::: warning +Starting with Meteor 3.4+, most build plugins won't work for application code when [the Rspack bundler](../about/modern-build-stack/rspack-bundler-integration.md) is enabled (which is the default). However, they will still work for Atmosphere package code and any code specifically set for Meteor bundler processing. You can still use build plugins for controlling and scripting independent app source code processing, as well as for linting purposes. Many of these functionalities can now be handled more effectively through Rspack's plugin system and lifecycle management, which offers more modern and flexible ways to process your source code. +::: + Meteor packages can provide build plugins - programs that integrate with the build tool Isobuild used to compile and bundle your application. @@ -202,6 +206,10 @@ process. Commonly, such files have the following methods: ## Linters {#build-plugin-linters} +::: warning +In Meteor 3.4+ [with Rspack enabled](../about/modern-build-stack/rspack-bundler-integration.md), linter build plugins for application code have the same limitations as other build plugins. However, you can still use Rspack's ecosystem of linting tools and plugins, which offer more integration with modern JavaScript tooling and better performance. +::: + Linters are programs that check the code for undeclared variables or find code that doesn't correspond to certain style guidelines. Some of the popular examples of linters are [JSHint](http://jshint.com/about/) and @@ -261,6 +269,10 @@ See an example of a linting plugin implemented in Core: [jshint](https://github. ## Compilers {#build-plugin-compilers} +::: warning +With Meteor 3.4+ [with Rspack enabled](../about/modern-build-stack/rspack-bundler-integration.md), compiler build plugins won't process application code by default. Rspack has its own loader system for handling various file types and transformations, which is typically more performant and better integrated with the modern JavaScript ecosystem. You can leverage Rspack's loaders for compiling TypeScript, JSX, CSS preprocessors, and other transformations directly. +::: + Compilers are programs that take the source files and output JavaScript or CSS. They also can output parts of HTML that is added to the `` tag and static assets. Examples for the compiler plugins are: CoffeeScript, Babel.js, @@ -341,6 +353,10 @@ package (compiles ES2015+ to JavaScript that can run in the browsers). ## Minifiers {#build-plugin-minifiers} +::: warning +In Meteor 3.4+ [with Rspack enabled](../about/modern-build-stack/rspack-bundler-integration.md), minifier build plugins won't be used for application code by default. Rspack includes its own optimization and minification capabilities through plugins like TerserPlugin for JavaScript and CssMinimizerPlugin for CSS. These provide efficient minification with modern optimizations and are integrated directly into the Rspack build process. +::: + Minifiers run last after the sources has been compiled and JavaScript code has been linked. Minifiers are only ran for the client programs (`web.browser` and `web.cordova`). From 09f6e3a9e997851d9ad52a6a693a57813fe1a86f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Mon, 19 Jan 2026 18:04:48 +0100 Subject: [PATCH 16/25] add links to Solid, Blaze, and Svelte 5 tutorials in docs --- v3-docs/docs/about/what-is.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3-docs/docs/about/what-is.md b/v3-docs/docs/about/what-is.md index 2e760549b2..a87934062c 100644 --- a/v3-docs/docs/about/what-is.md +++ b/v3-docs/docs/about/what-is.md @@ -29,7 +29,7 @@ Meteor is a full-stack JavaScript platform for developing modern web and mobile - Start by learning how to install Meteor in the [Installation Section](/about/install.html). -- The tutorials are the perfect place to start. Build a simple app to manage a task list! Available for [React](/tutorials/react/index.html), and [Vue 3](/tutorials/vue/meteorjs3-vue3.html). Blaze and Svelte tutorials are coming soon. +- The tutorials are the perfect place to start. Build a simple app to manage a task list! Available for [React](/tutorials/react/index.html), [Vue 3](/tutorials/vue/meteorjs3-vue3.html), [Solid](/tutorials/solid/index.html), [Blaze](/tutorials/blaze/index.html) and [Svelte 5](/tutorials/svelte/index.html). - Participate in Meteor's fully professional, engaging and interactive online school. Join [Meteor University](https://university.meteor.com/). Our courses cover Meteor 2 but most of the content is still relevant. From 1e146f0e76a8f4b38fff3590d5ea58974563b32f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 21 Jan 2026 15:33:43 +0100 Subject: [PATCH 17/25] update Rspack plugin references in documentation --- v3-docs/docs/api/package.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3-docs/docs/api/package.md b/v3-docs/docs/api/package.md index 0dab62c5d3..6229b94c33 100644 --- a/v3-docs/docs/api/package.md +++ b/v3-docs/docs/api/package.md @@ -168,7 +168,7 @@ This way we avoid having to call a specific code before another specific code in ## Build Plugins API {#build-plugin-api} ::: warning -Starting with Meteor 3.4+, most build plugins won't work for application code when [the Rspack bundler](../about/modern-build-stack/rspack-bundler-integration.md) is enabled (which is the default). However, they will still work for Atmosphere package code and any code specifically set for Meteor bundler processing. You can still use build plugins for controlling and scripting independent app source code processing, as well as for linting purposes. Many of these functionalities can now be handled more effectively through Rspack's plugin system and lifecycle management, which offers more modern and flexible ways to process your source code. +Starting with Meteor 3.4+, most build plugins won't work for application code when [the Rspack bundler](../about/modern-build-stack/rspack-bundler-integration.md) is enabled (which is the default). However, they will still work for Atmosphere package code and any code specifically set for Meteor bundler processing. You can still use build plugins for scripting independent app processing. Many of these functionalities can now be handled more effectively through Rspack's plugin system and lifecycle management, which offers more modern and flexible ways to process your app source code. ::: Meteor packages can provide build plugins - programs that integrate with the @@ -354,7 +354,7 @@ package (compiles ES2015+ to JavaScript that can run in the browsers). ## Minifiers {#build-plugin-minifiers} ::: warning -In Meteor 3.4+ [with Rspack enabled](../about/modern-build-stack/rspack-bundler-integration.md), minifier build plugins won't be used for application code by default. Rspack includes its own optimization and minification capabilities through plugins like TerserPlugin for JavaScript and CssMinimizerPlugin for CSS. These provide efficient minification with modern optimizations and are integrated directly into the Rspack build process. +In Meteor 3.4+ [with Rspack enabled](../about/modern-build-stack/rspack-bundler-integration.md), minifier build plugins won't be used for application code by default. Rspack includes its own optimization and minification capabilities through plugins like SwcJsMinimizerRspackPlugin for JavaScript and SwcJsMinimizerRspackPlugin for CSS. These provide efficient minification with modern optimizations and are integrated directly into the Rspack build process. ::: Minifiers run last after the sources has been compiled and JavaScript code has From 919202a24d614114e2976f4ff24dfeaaef27256f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Tue, 27 Jan 2026 18:19:43 +0100 Subject: [PATCH 18/25] refactor info blocks to add the two bundler version links to one --- v3-docs/docs/tutorials/blaze/1.creating-the-app.md | 6 +----- v3-docs/docs/tutorials/blaze/9.next-steps.md | 6 +----- v3-docs/docs/tutorials/react/1.creating-the-app.md | 6 +----- v3-docs/docs/tutorials/react/9.next-steps.md | 6 +----- v3-docs/docs/tutorials/solid/1.creating-the-app.md | 6 +----- v3-docs/docs/tutorials/solid/9.next-steps.md | 6 +----- v3-docs/docs/tutorials/svelte/1.creating-the-app.md | 6 +----- v3-docs/docs/tutorials/svelte/9.next-steps.md | 6 +----- v3-docs/docs/tutorials/vue/meteorjs3-vue3.md | 12 ++---------- 9 files changed, 10 insertions(+), 50 deletions(-) diff --git a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md index 89ae31870f..509215dbc7 100644 --- a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md @@ -17,11 +17,7 @@ Meteor will create all the necessary files for you. With `--blaze` option, Meteo We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/blaze/9.next-steps.md b/v3-docs/docs/tutorials/blaze/9.next-steps.md index 40979596a5..f08665fd7f 100644 --- a/v3-docs/docs/tutorials/blaze/9.next-steps.md +++ b/v3-docs/docs/tutorials/blaze/9.next-steps.md @@ -5,11 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Blaze. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 2b181f5a9d..bfca699a9c 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -23,11 +23,7 @@ Meteor will create all the necessary files for you. By default, Meteor generates We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-react/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/react/9.next-steps.md b/v3-docs/docs/tutorials/react/9.next-steps.md index c6b0588bbb..1b7ec4005d 100644 --- a/v3-docs/docs/tutorials/react/9.next-steps.md +++ b/v3-docs/docs/tutorials/react/9.next-steps.md @@ -5,11 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and React. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-react/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/solid/1.creating-the-app.md b/v3-docs/docs/tutorials/solid/1.creating-the-app.md index e50d8f1a4c..64656abcb9 100644 --- a/v3-docs/docs/tutorials/solid/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/solid/1.creating-the-app.md @@ -17,11 +17,7 @@ Meteor will create all the necessary files for you. With `--solid` option, Meteo We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/solid/9.next-steps.md b/v3-docs/docs/tutorials/solid/9.next-steps.md index 807b8c2890..ccce546216 100644 --- a/v3-docs/docs/tutorials/solid/9.next-steps.md +++ b/v3-docs/docs/tutorials/solid/9.next-steps.md @@ -5,11 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Solid. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md index 2fb6784113..335b6fecd8 100644 --- a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md @@ -17,11 +17,7 @@ Meteor will create all the necessary files for you. With `--svelte` option, Mete We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/svelte/9.next-steps.md b/v3-docs/docs/tutorials/svelte/9.next-steps.md index b504a491a2..554a726960 100644 --- a/v3-docs/docs/tutorials/svelte/9.next-steps.md +++ b/v3-docs/docs/tutorials/svelte/9.next-steps.md @@ -5,11 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Svelte. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md index 369a5993bf..6713dc9946 100644 --- a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md +++ b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md @@ -42,11 +42,7 @@ Meteor will create all the necessary files for you. The `--vue` flag generates a We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). ::: You will find the `client` directory contains files for your client-side setup. Inside, you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. @@ -1373,11 +1369,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Vue. ::: info -You can find the final version of this app using the Rspack bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack). -::: - -::: info -You can find the final version of this app using the Meteor bundler in our [GitHub repository](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). +You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). ::: Here are some options for what you can do next: From 6fa4e8f32cd9f7fd8d44a9597fccbc31a0eeab17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Tue, 27 Jan 2026 18:23:59 +0100 Subject: [PATCH 19/25] refactor info blocks to add the two bundler version links to one --- v3-docs/docs/tutorials/blaze/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/blaze/9.next-steps.md | 2 +- v3-docs/docs/tutorials/react/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/react/9.next-steps.md | 2 +- v3-docs/docs/tutorials/solid/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/solid/9.next-steps.md | 2 +- v3-docs/docs/tutorials/svelte/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/svelte/9.next-steps.md | 2 +- v3-docs/docs/tutorials/vue/meteorjs3-vue3.md | 4 ++-- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md index 509215dbc7..cfe1f82b90 100644 --- a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md @@ -17,7 +17,7 @@ Meteor will create all the necessary files for you. With `--blaze` option, Meteo We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/blaze/9.next-steps.md b/v3-docs/docs/tutorials/blaze/9.next-steps.md index f08665fd7f..8d13362738 100644 --- a/v3-docs/docs/tutorials/blaze/9.next-steps.md +++ b/v3-docs/docs/tutorials/blaze/9.next-steps.md @@ -5,7 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Blaze. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index bfca699a9c..01451066f4 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -23,7 +23,7 @@ Meteor will create all the necessary files for you. By default, Meteor generates We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-react/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-react/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/react/9.next-steps.md b/v3-docs/docs/tutorials/react/9.next-steps.md index 1b7ec4005d..2680bdb952 100644 --- a/v3-docs/docs/tutorials/react/9.next-steps.md +++ b/v3-docs/docs/tutorials/react/9.next-steps.md @@ -5,7 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and React. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-react/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-react/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-react/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-react/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/solid/1.creating-the-app.md b/v3-docs/docs/tutorials/solid/1.creating-the-app.md index 64656abcb9..24accd8de1 100644 --- a/v3-docs/docs/tutorials/solid/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/solid/1.creating-the-app.md @@ -17,7 +17,7 @@ Meteor will create all the necessary files for you. With `--solid` option, Meteo We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/solid/9.next-steps.md b/v3-docs/docs/tutorials/solid/9.next-steps.md index ccce546216..bb93d34d4e 100644 --- a/v3-docs/docs/tutorials/solid/9.next-steps.md +++ b/v3-docs/docs/tutorials/solid/9.next-steps.md @@ -5,7 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Solid. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md index 335b6fecd8..971eadf81d 100644 --- a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md @@ -17,7 +17,7 @@ Meteor will create all the necessary files for you. With `--svelte` option, Mete We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). ::: The files located in the `client` directory are setting up your client side (web), you can see for example `client/main.html` where Meteor is rendering your App main component into the HTML. diff --git a/v3-docs/docs/tutorials/svelte/9.next-steps.md b/v3-docs/docs/tutorials/svelte/9.next-steps.md index 554a726960..bd894372c8 100644 --- a/v3-docs/docs/tutorials/svelte/9.next-steps.md +++ b/v3-docs/docs/tutorials/svelte/9.next-steps.md @@ -5,7 +5,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Svelte. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). ::: Here are some options for what you can do next: diff --git a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md index 6713dc9946..2335c0470e 100644 --- a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md +++ b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md @@ -42,7 +42,7 @@ Meteor will create all the necessary files for you. The `--vue` flag generates a We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). ::: You will find the `client` directory contains files for your client-side setup. Inside, you can see for example `client/main.jsx` where Meteor is rendering your App main component into the HTML. @@ -1369,7 +1369,7 @@ You have completed the tutorial! By now, you should have a good understanding of working with Meteor and Vue. ::: info -You can find the final version of this app in our GitHub repository using either the [Rspack bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). +You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). ::: Here are some options for what you can do next: From a6840e0298c0b074e07823c6666bace012db1791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Tue, 27 Jan 2026 18:32:47 +0100 Subject: [PATCH 20/25] improve tutorial clarity on Rspack and Meteor bundlers --- v3-docs/docs/tutorials/blaze/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/react/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/solid/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/svelte/1.creating-the-app.md | 2 +- v3-docs/docs/tutorials/vue/meteorjs3-vue3.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md index cfe1f82b90..d76d22e98f 100644 --- a/v3-docs/docs/tutorials/blaze/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/blaze/1.creating-the-app.md @@ -14,7 +14,7 @@ meteor create --blaze simple-todos-blaze Meteor will create all the necessary files for you. With `--blaze` option, Meteor generates a project using Blaze and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. -We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. +We provide the final app for both the Rspack and Meteor bundlers. This guide follows the Rspack version and reaches the same final state. The Meteor bundler version is for those who prefer the legacy bundler. ::: info You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-blaze/tree/3.4-meteor). diff --git a/v3-docs/docs/tutorials/react/1.creating-the-app.md b/v3-docs/docs/tutorials/react/1.creating-the-app.md index 01451066f4..5b9ed2d4a7 100644 --- a/v3-docs/docs/tutorials/react/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/react/1.creating-the-app.md @@ -20,7 +20,7 @@ meteor create simple-todos-react Meteor will create all the necessary files for you. By default, Meteor generates a project using React and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. -We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. +We provide the final app for both the Rspack and Meteor bundlers. This guide follows the Rspack version and reaches the same final state. The Meteor bundler version is for those who prefer the legacy bundler. ::: info You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-react/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-react/tree/3.4-meteor). diff --git a/v3-docs/docs/tutorials/solid/1.creating-the-app.md b/v3-docs/docs/tutorials/solid/1.creating-the-app.md index 24accd8de1..c222513c98 100644 --- a/v3-docs/docs/tutorials/solid/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/solid/1.creating-the-app.md @@ -14,7 +14,7 @@ meteor create --solid simple-todos-solid Meteor will create all the necessary files for you. With `--solid` option, Meteor generates a project using Solid and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. -We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. +We provide the final app for both the Rspack and Meteor bundlers. This guide follows the Rspack version and reaches the same final state. The Meteor bundler version is for those who prefer the legacy bundler. ::: info You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-solid/tree/3.4-meteor). diff --git a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md index 971eadf81d..6b5f727ef5 100644 --- a/v3-docs/docs/tutorials/svelte/1.creating-the-app.md +++ b/v3-docs/docs/tutorials/svelte/1.creating-the-app.md @@ -14,7 +14,7 @@ meteor create --svelte simple-todos-svelte Meteor will create all the necessary files for you. With `--svelte` option, Meteor generates a project using Svelte 5 and Rspack as the bundler, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. -We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. +We provide the final app for both the Rspack and Meteor bundlers. This guide follows the Rspack version and reaches the same final state. The Meteor bundler version is for those who prefer the legacy bundler. ::: info You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-svelte/tree/3.4-meteor). diff --git a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md index 2335c0470e..25a0f615bd 100644 --- a/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md +++ b/v3-docs/docs/tutorials/vue/meteorjs3-vue3.md @@ -39,7 +39,7 @@ meteor create --vue simple-todos-vue Meteor will create all the necessary files for you. The `--vue` flag generates a project using Vue, Rspack and Tailwind CSS, and this is the approach walked through in this tutorial. Using [the Rspack bundler](../../about/modern-build-stack/rspack-bundler-integration.md) is the default convention in Meteor 3.4+, as it improves dev speed, enables more build features, and provides better control over bundle size and configuration. -We provide the final version of the app built in this tutorial for both the Rspack and the Meteor bundler versions. By following the guide, you will reach that same state at the end. +We provide the final app for both the Rspack and Meteor bundlers. This guide follows the Rspack version and reaches the same final state. The Meteor bundler version is for those who prefer the legacy bundler. ::: info You can find the final version of this app on GitHub using the [Rspack bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) or the [Meteor bundler](https://github.com/meteor/meteor3-vue3/tree/3.4-meteor). From 0a532e8d924e22cd540212922e5cc152ea3c1d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 28 Jan 2026 11:58:41 +0100 Subject: [PATCH 21/25] upgrade @meteorjs/rspack to official version 1.0.0 --- npm-packages/meteor-rspack/package-lock.json | 6 +++--- npm-packages/meteor-rspack/package.json | 2 +- packages/rspack/lib/constants.js | 2 +- tools/modern-tests/apps/vue/package.json | 2 +- tools/static-assets/skel-angular/package.json | 2 +- tools/static-assets/skel-apollo/package.json | 2 +- tools/static-assets/skel-babel/package.json | 2 +- tools/static-assets/skel-blaze/package.json | 2 +- tools/static-assets/skel-chakra-ui/package.json | 2 +- tools/static-assets/skel-coffeescript/package.json | 2 +- tools/static-assets/skel-full/package.json | 2 +- tools/static-assets/skel-react/package.json | 2 +- tools/static-assets/skel-solid/package.json | 2 +- tools/static-assets/skel-svelte/package.json | 2 +- tools/static-assets/skel-tailwind/package.json | 2 +- tools/static-assets/skel-typescript/package.json | 2 +- tools/static-assets/skel-vue/package.json | 2 +- v3-docs/docs/generators/changelog/versions/3.4.0.md | 2 +- 18 files changed, 20 insertions(+), 20 deletions(-) diff --git a/npm-packages/meteor-rspack/package-lock.json b/npm-packages/meteor-rspack/package-lock.json index a87b51d3e7..7ac96ff574 100644 --- a/npm-packages/meteor-rspack/package-lock.json +++ b/npm-packages/meteor-rspack/package-lock.json @@ -1,12 +1,12 @@ { "name": "@meteorjs/rspack", - "version": "0.3.56", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@meteorjs/rspack", - "version": "0.3.56", + "version": "1.0.0", "license": "ISC", "dependencies": { "fast-deep-equal": "^3.1.3", @@ -3251,7 +3251,7 @@ } }, "node_modules/media-typer": { - "version": "0.3.56", + "version": "1.0.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "license": "MIT", diff --git a/npm-packages/meteor-rspack/package.json b/npm-packages/meteor-rspack/package.json index 19203a26a6..92c294f62c 100644 --- a/npm-packages/meteor-rspack/package.json +++ b/npm-packages/meteor-rspack/package.json @@ -1,6 +1,6 @@ { "name": "@meteorjs/rspack", - "version": "0.3.56", + "version": "1.0.0", "description": "Configuration logic for using Rspack in Meteor projects", "main": "index.js", "type": "commonjs", diff --git a/packages/rspack/lib/constants.js b/packages/rspack/lib/constants.js index d98c80d0c3..3e5a1e222f 100644 --- a/packages/rspack/lib/constants.js +++ b/packages/rspack/lib/constants.js @@ -5,7 +5,7 @@ export const DEFAULT_RSPACK_VERSION = '1.7.1'; -export const DEFAULT_METEOR_RSPACK_VERSION = '0.3.56'; +export const DEFAULT_METEOR_RSPACK_VERSION = '1.0.0'; export const DEFAULT_METEOR_RSPACK_REACT_HMR_VERSION = '1.4.3'; diff --git a/tools/modern-tests/apps/vue/package.json b/tools/modern-tests/apps/vue/package.json index 535a5b6ac4..48cea77380 100644 --- a/tools/modern-tests/apps/vue/package.json +++ b/tools/modern-tests/apps/vue/package.json @@ -17,7 +17,7 @@ "vue-router": "^4.2.5" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rspack/cli": "^1.4.8", "@rspack/core": "^1.4.8", "@tailwindcss/postcss": "^4.1.12", diff --git a/tools/static-assets/skel-angular/package.json b/tools/static-assets/skel-angular/package.json index 1f285b2e27..a6a7078018 100644 --- a/tools/static-assets/skel-angular/package.json +++ b/tools/static-assets/skel-angular/package.json @@ -22,7 +22,7 @@ }, "devDependencies": { "@angular/compiler-cli": "^20.0.0", - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@nx/angular-rspack": "^21.1.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", diff --git a/tools/static-assets/skel-apollo/package.json b/tools/static-assets/skel-apollo/package.json index bbcc4aa6d8..8ff4dcf675 100644 --- a/tools/static-assets/skel-apollo/package.json +++ b/tools/static-assets/skel-apollo/package.json @@ -20,7 +20,7 @@ "devDependencies": { "@graphql-tools/webpack-loader": "^7.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", "@rspack/plugin-react-refresh": "^1.4.3", diff --git a/tools/static-assets/skel-babel/package.json b/tools/static-assets/skel-babel/package.json index 14ba2fe20e..303e6037b6 100644 --- a/tools/static-assets/skel-babel/package.json +++ b/tools/static-assets/skel-babel/package.json @@ -17,7 +17,7 @@ "devDependencies": { "@babel/preset-env": "^7.28.3", "@babel/preset-react": "^7.23.3", - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-blaze/package.json b/tools/static-assets/skel-blaze/package.json index 5226d61a7f..8b59baee14 100644 --- a/tools/static-assets/skel-blaze/package.json +++ b/tools/static-assets/skel-blaze/package.json @@ -14,7 +14,7 @@ "meteor-node-stubs": "^1.2.12" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-chakra-ui/package.json b/tools/static-assets/skel-chakra-ui/package.json index 1ab88085c8..121244d19f 100644 --- a/tools/static-assets/skel-chakra-ui/package.json +++ b/tools/static-assets/skel-chakra-ui/package.json @@ -21,7 +21,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-coffeescript/package.json b/tools/static-assets/skel-coffeescript/package.json index dec1d6a126..0b265c46a6 100644 --- a/tools/static-assets/skel-coffeescript/package.json +++ b/tools/static-assets/skel-coffeescript/package.json @@ -15,7 +15,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-full/package.json b/tools/static-assets/skel-full/package.json index 486bacabc7..b98f4d8c4e 100644 --- a/tools/static-assets/skel-full/package.json +++ b/tools/static-assets/skel-full/package.json @@ -12,7 +12,7 @@ "meteor-node-stubs": "^1.2.12" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-react/package.json b/tools/static-assets/skel-react/package.json index 5a4e91071c..52c87bbea6 100644 --- a/tools/static-assets/skel-react/package.json +++ b/tools/static-assets/skel-react/package.json @@ -15,7 +15,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-solid/package.json b/tools/static-assets/skel-solid/package.json index d867d10003..c6e22545f4 100644 --- a/tools/static-assets/skel-solid/package.json +++ b/tools/static-assets/skel-solid/package.json @@ -14,7 +14,7 @@ "picocolors": "^1.1.1" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-svelte/package.json b/tools/static-assets/skel-svelte/package.json index 4f6fc237cb..41a8beb0a7 100644 --- a/tools/static-assets/skel-svelte/package.json +++ b/tools/static-assets/skel-svelte/package.json @@ -13,7 +13,7 @@ "meteor-node-stubs": "^1.2.12" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-tailwind/package.json b/tools/static-assets/skel-tailwind/package.json index 22deded09f..ce8ed74b51 100644 --- a/tools/static-assets/skel-tailwind/package.json +++ b/tools/static-assets/skel-tailwind/package.json @@ -16,7 +16,7 @@ "react-dom": "^17.0.2" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-typescript/package.json b/tools/static-assets/skel-typescript/package.json index 299fc3bf1f..456a6a990a 100644 --- a/tools/static-assets/skel-typescript/package.json +++ b/tools/static-assets/skel-typescript/package.json @@ -15,7 +15,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/tools/static-assets/skel-vue/package.json b/tools/static-assets/skel-vue/package.json index 607076141d..4686b5ed7e 100644 --- a/tools/static-assets/skel-vue/package.json +++ b/tools/static-assets/skel-vue/package.json @@ -17,7 +17,7 @@ "vue-router": "^4.2.5" }, "devDependencies": { - "@meteorjs/rspack": "^0.3.56", + "@meteorjs/rspack": "^1.0.0", "@rsdoctor/rspack-plugin": "^1.2.3", "@rspack/cli": "^1.7.1", "@rspack/core": "^1.7.1", diff --git a/v3-docs/docs/generators/changelog/versions/3.4.0.md b/v3-docs/docs/generators/changelog/versions/3.4.0.md index 459f9eaf13..45d0840dae 100644 --- a/v3-docs/docs/generators/changelog/versions/3.4.0.md +++ b/v3-docs/docs/generators/changelog/versions/3.4.0.md @@ -119,7 +119,7 @@ If you find any issues, please report them to the [Meteor issues tracker](https: #### Bumped NPM Packages -- @meteorjs/rspack@0.3.56 +- @meteorjs/rspack@1.0.0 #### Special thanks to From 82b1a1145f1b930b8e68103fbc1d0784c6954d8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 28 Jan 2026 12:06:48 +0100 Subject: [PATCH 22/25] update BUNDLE_VERSION to 22.22.0.3 --- meteor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meteor b/meteor index ca5d33a653..d1412f0105 100755 --- a/meteor +++ b/meteor @@ -1,6 +1,6 @@ #!/usr/bin/env bash -BUNDLE_VERSION=22.22.0.2 +BUNDLE_VERSION=22.22.0.3 # OS Check. Put here because here is where we download the precompiled # bundles that are arch specific. From a81d6eac08203d238f0b6f7139853900ef1fd642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 28 Jan 2026 12:14:28 +0100 Subject: [PATCH 23/25] re-run checks From a9e12ef7a4617cc02618ead562ce8e0053b162e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 28 Jan 2026 12:21:53 +0100 Subject: [PATCH 24/25] Meteor version to 3.4-rc.4 --- packages/accounts-base/package.js | 2 +- packages/accounts-password/package.js | 2 +- packages/accounts-passwordless/package.js | 2 +- packages/accounts-ui-unstyled/package.js | 2 +- packages/accounts-ui/package.js | 2 +- packages/babel-compiler/package.js | 2 +- packages/boilerplate-generator/package.js | 2 +- packages/check/package.js | 2 +- packages/ecmascript/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/meteor/package.js | 2 +- packages/minifier-js/package.js | 2 +- packages/minimongo/package.js | 2 +- packages/mongo/package.js | 2 +- packages/react-fast-refresh/package.js | 2 +- packages/rspack/package.js | 2 +- packages/shell-server/package.js | 2 +- packages/standard-minifier-css/package.js | 2 +- packages/standard-minifier-js/package.js | 2 +- packages/standard-minifiers/package.js | 2 +- packages/static-html/package.js | 2 +- packages/test-in-browser/package.js | 2 +- packages/tools-core/package.js | 2 +- packages/typescript/package.js | 2 +- packages/webapp/package.js | 2 +- .../admin/meteor-release-experimental.json | 2 +- .../modern-tests/apps/solid/.meteor/versions | 4 +- .../modern-tests/apps/svelte/.meteor/versions | 4 +- tools/modern-tests/apps/vue/.meteor/versions | 4 +- v3-docs/docs/about/modern-build-stack.md | 2 +- .../rspack-bundler-integration.md | 2 +- .../generators/changelog/versions/3.4.0.md | 50 +++++++++---------- 32 files changed, 59 insertions(+), 59 deletions(-) diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index 2fe7a753cb..5a388ab704 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "A user account system", - version: "3.2.0-rc340.3", + version: "3.2.0-rc340.4", }); Package.onUse((api) => { diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index 5f923b8f89..379ccabd99 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -5,7 +5,7 @@ Package.describe({ // 2.2.x in the future. The version was also bumped to 2.0.0 temporarily // during the Meteor 1.5.1 release process, so versions 2.0.0-beta.2 // through -beta.5 and -rc.0 have already been published. - version: "3.2.2-rc340.3", + version: "3.2.2-rc340.4", }); Npm.depends({ diff --git a/packages/accounts-passwordless/package.js b/packages/accounts-passwordless/package.js index a4a04d9a83..d03cb0606d 100644 --- a/packages/accounts-passwordless/package.js +++ b/packages/accounts-passwordless/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'No-password login/sign-up support for accounts', - version: '3.1.0-rc340.3', + version: '3.1.0-rc340.4', }); Package.onUse(api => { diff --git a/packages/accounts-ui-unstyled/package.js b/packages/accounts-ui-unstyled/package.js index c84b8351eb..54bb1f7281 100644 --- a/packages/accounts-ui-unstyled/package.js +++ b/packages/accounts-ui-unstyled/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Unstyled version of login widgets', - version: '1.8.0-rc340.3', + version: '1.8.0-rc340.4', }); Package.onUse(function(api) { diff --git a/packages/accounts-ui/package.js b/packages/accounts-ui/package.js index 83060240fb..430d2afd08 100644 --- a/packages/accounts-ui/package.js +++ b/packages/accounts-ui/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Simple templates to add login widgets to an app", - version: '1.5.0-rc340.3', + version: '1.5.0-rc340.4', }); Package.onUse(api => { diff --git a/packages/babel-compiler/package.js b/packages/babel-compiler/package.js index dc82fe3285..43ad17fd6f 100644 --- a/packages/babel-compiler/package.js +++ b/packages/babel-compiler/package.js @@ -1,7 +1,7 @@ Package.describe({ name: "babel-compiler", summary: "Parser/transpiler for ECMAScript 2015+ syntax", - version: '7.13.0-rc340.3', + version: '7.13.0-rc340.4', devOnly: true, }); diff --git a/packages/boilerplate-generator/package.js b/packages/boilerplate-generator/package.js index 29950227f3..1ef3c388df 100644 --- a/packages/boilerplate-generator/package.js +++ b/packages/boilerplate-generator/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Generates the boilerplate html from program's manifest", - version: '2.1.0-rc340.3', + version: '2.1.0-rc340.4', }); Npm.depends({ diff --git a/packages/check/package.js b/packages/check/package.js index 42b64a0094..2006810167 100644 --- a/packages/check/package.js +++ b/packages/check/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Check whether a value matches a pattern', - version: '1.5.0-rc340.3', + version: '1.5.0-rc340.4', }); Package.onUse(api => { diff --git a/packages/ecmascript/package.js b/packages/ecmascript/package.js index e04eea5cd7..e048bbb2e5 100644 --- a/packages/ecmascript/package.js +++ b/packages/ecmascript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ecmascript', - version: '0.17.0-rc340.3', + version: '0.17.0-rc340.4', summary: 'Compiler plugin that supports ES2015+ in all .js files', documentation: 'README.md', }); diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 568c16d662..edb5a6372b 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: "3.4.0-rc.3", + version: "3.4.0-rc.4", }); Package.includeTool(); diff --git a/packages/meteor/package.js b/packages/meteor/package.js index 702a3487e9..6ddff07e1f 100644 --- a/packages/meteor/package.js +++ b/packages/meteor/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Core Meteor environment", - version: '2.2.0-rc340.3', + version: '2.2.0-rc340.4', }); Package.registerBuildPlugin({ diff --git a/packages/minifier-js/package.js b/packages/minifier-js/package.js index 5f7017ba53..ebfc942874 100644 --- a/packages/minifier-js/package.js +++ b/packages/minifier-js/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "JavaScript minifier", - version: '3.1.0-rc340.3', + version: '3.1.0-rc340.4', }); Npm.depends({ diff --git a/packages/minimongo/package.js b/packages/minimongo/package.js index 6c2a9941b2..4f30cadffd 100644 --- a/packages/minimongo/package.js +++ b/packages/minimongo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's client-side datastore: a port of MongoDB to Javascript", - version: "2.0.5-rc340.3", + version: "2.0.5-rc340.4", }); Package.onUse((api) => { diff --git a/packages/mongo/package.js b/packages/mongo/package.js index f5a8a716e2..58aef041a1 100644 --- a/packages/mongo/package.js +++ b/packages/mongo/package.js @@ -9,7 +9,7 @@ Package.describe({ summary: "Adaptor for using MongoDB and Minimongo over DDP", - version: "2.2.0-rc340.3", + version: "2.2.0-rc340.4", }); Npm.depends({ diff --git a/packages/react-fast-refresh/package.js b/packages/react-fast-refresh/package.js index 98021d79ca..6be381b7f5 100644 --- a/packages/react-fast-refresh/package.js +++ b/packages/react-fast-refresh/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'react-fast-refresh', - version: '0.3.0-rc340.3', + version: '0.3.0-rc340.4', summary: 'Automatically update React components with HMR', documentation: 'README.md', }); diff --git a/packages/rspack/package.js b/packages/rspack/package.js index 92c4737cdf..5c51d7adc2 100644 --- a/packages/rspack/package.js +++ b/packages/rspack/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Integrate rspack into the Meteor lifecycle to run the bundler independently", - version: '1.0.0-rc340.3', + version: '1.0.0-rc340.4', }); Package.registerBuildPlugin({ diff --git a/packages/shell-server/package.js b/packages/shell-server/package.js index 9db7f307e8..9a0bd79805 100644 --- a/packages/shell-server/package.js +++ b/packages/shell-server/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "shell-server", - version: '0.7.0-rc340.3', + version: '0.7.0-rc340.4', summary: "Server-side component of the `meteor shell` command.", documentation: "README.md", devOnly: true, diff --git a/packages/standard-minifier-css/package.js b/packages/standard-minifier-css/package.js index 4bda02bcad..442e17fea5 100644 --- a/packages/standard-minifier-css/package.js +++ b/packages/standard-minifier-css/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'standard-minifier-css', - version: '1.10.0-rc340.3', + version: '1.10.0-rc340.4', summary: 'Standard css minifier used with Meteor apps by default.', documentation: 'README.md', devOnly: true, diff --git a/packages/standard-minifier-js/package.js b/packages/standard-minifier-js/package.js index 0eaf3515e0..e24f035a5d 100644 --- a/packages/standard-minifier-js/package.js +++ b/packages/standard-minifier-js/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'standard-minifier-js', - version: '3.2.0-rc340.3', + version: '3.2.0-rc340.4', summary: 'Standard javascript minifiers used with Meteor apps by default.', documentation: 'README.md', devOnly: true, diff --git a/packages/standard-minifiers/package.js b/packages/standard-minifiers/package.js index 95dd0ac25a..b947ec786b 100644 --- a/packages/standard-minifiers/package.js +++ b/packages/standard-minifiers/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'standard-minifiers', - version: '1.2.0-rc340.3', + version: '1.2.0-rc340.4', summary: 'Standard minifiers used with Meteor apps by default.', documentation: 'README.md', devOnly: true, diff --git a/packages/static-html/package.js b/packages/static-html/package.js index 8444c60a4f..8456cf93bd 100644 --- a/packages/static-html/package.js +++ b/packages/static-html/package.js @@ -1,7 +1,7 @@ Package.describe({ name: 'static-html', summary: "Define static page content in .html files", - version: '1.5.0-rc340.3', + version: '1.5.0-rc340.4', git: 'https://github.com/meteor/meteor.git', devOnly: true, }); diff --git a/packages/test-in-browser/package.js b/packages/test-in-browser/package.js index 4253fe77b8..7c78f8019f 100644 --- a/packages/test-in-browser/package.js +++ b/packages/test-in-browser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests interactively in the browser", - version: '1.5.0-rc340.3', + version: '1.5.0-rc340.4', documentation: null }); diff --git a/packages/tools-core/package.js b/packages/tools-core/package.js index c75d44aa12..a7b418f5cf 100644 --- a/packages/tools-core/package.js +++ b/packages/tools-core/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Helpers for managing modern tools in Meteor", - version: '1.0.0-rc340.3', + version: '1.0.0-rc340.4', devOnly: true, }); diff --git a/packages/typescript/package.js b/packages/typescript/package.js index b07c29b6b1..78f1089932 100644 --- a/packages/typescript/package.js +++ b/packages/typescript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'typescript', - version: '5.9.3-rc340.3', + version: '5.9.3-rc340.4', summary: 'Compiler plugin that compiles TypeScript and ECMAScript in .ts and .tsx files', documentation: 'README.md', diff --git a/packages/webapp/package.js b/packages/webapp/package.js index 2cdec7a3b6..ca1b7c9b16 100644 --- a/packages/webapp/package.js +++ b/packages/webapp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Serves a Meteor app over HTTP", - version: "2.1.0-rc340.3", + version: "2.1.0-rc340.4", }); Npm.depends({ diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index c2aa819080..a7bdfd5d81 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "3.4-rc.3", + "version": "3.4-rc.4", "recommended": false, "official": false, "description": "Meteor experimental release" diff --git a/tools/modern-tests/apps/solid/.meteor/versions b/tools/modern-tests/apps/solid/.meteor/versions index 4eff9134df..605d3c318b 100644 --- a/tools/modern-tests/apps/solid/.meteor/versions +++ b/tools/modern-tests/apps/solid/.meteor/versions @@ -54,14 +54,14 @@ reactive-var@1.0.13 reload@1.3.2 retry@1.1.1 routepolicy@1.1.2 -rspack@1.0.0-rc340.3 +rspack@1.0.0-rc340.4 shell-server@0.6.1 socket-stream-client@0.6.1 standard-minifier-css@1.9.3 standard-minifier-js@3.1.1 static-html@1.4.0 static-html-tools@1.0.0 -tools-core@1.0.0-rc340.3 +tools-core@1.0.0-rc340.4 tracker@1.3.4 typescript@5.6.5 webapp@2.0.7 diff --git a/tools/modern-tests/apps/svelte/.meteor/versions b/tools/modern-tests/apps/svelte/.meteor/versions index be6673b5ef..1459fdf1b3 100644 --- a/tools/modern-tests/apps/svelte/.meteor/versions +++ b/tools/modern-tests/apps/svelte/.meteor/versions @@ -53,14 +53,14 @@ react-fast-refresh@0.2.9 reload@1.3.2 retry@1.1.1 routepolicy@1.1.2 -rspack@1.0.0-rc340.3 +rspack@1.0.0-rc340.4 shell-server@0.6.1 socket-stream-client@0.6.1 standard-minifier-css@1.9.3 standard-minifier-js@3.1.1 static-html@1.4.0 static-html-tools@1.0.0 -tools-core@1.0.0-rc340.3 +tools-core@1.0.0-rc340.4 tracker@1.3.4 typescript@5.6.5 webapp@2.0.7 diff --git a/tools/modern-tests/apps/vue/.meteor/versions b/tools/modern-tests/apps/vue/.meteor/versions index 4eff9134df..605d3c318b 100644 --- a/tools/modern-tests/apps/vue/.meteor/versions +++ b/tools/modern-tests/apps/vue/.meteor/versions @@ -54,14 +54,14 @@ reactive-var@1.0.13 reload@1.3.2 retry@1.1.1 routepolicy@1.1.2 -rspack@1.0.0-rc340.3 +rspack@1.0.0-rc340.4 shell-server@0.6.1 socket-stream-client@0.6.1 standard-minifier-css@1.9.3 standard-minifier-js@3.1.1 static-html@1.4.0 static-html-tools@1.0.0 -tools-core@1.0.0-rc340.3 +tools-core@1.0.0-rc340.4 tracker@1.3.4 typescript@5.6.5 webapp@2.0.7 diff --git a/v3-docs/docs/about/modern-build-stack.md b/v3-docs/docs/about/modern-build-stack.md index 61892014a5..b43ae76aa6 100644 --- a/v3-docs/docs/about/modern-build-stack.md +++ b/v3-docs/docs/about/modern-build-stack.md @@ -46,7 +46,7 @@ Starting with Meteor 3.4 Add this Atmosphere package to your app: ``` bash -meteor add rspack@1.0.0-rc340.3 +meteor add rspack@1.0.0-rc340.4 ``` On first run, the package installs the required Rspack setup at the project level. It compiles your app code with Rspack to get the full benefit of this integration. diff --git a/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md b/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md index f7ea8f5a74..8c870d4edc 100644 --- a/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md +++ b/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md @@ -18,7 +18,7 @@ Starting with Meteor 3.4 Add this Atmosphere package to your app: ``` bash -meteor add rspack@1.0.0-rc340.3 +meteor add rspack@1.0.0-rc340.4 ``` On first run, the package installs the required Rspack setup at the project level. It compiles your app code with Rspack to get the full benefit of this integration. diff --git a/v3-docs/docs/generators/changelog/versions/3.4.0.md b/v3-docs/docs/generators/changelog/versions/3.4.0.md index 45d0840dae..3290650eb7 100644 --- a/v3-docs/docs/generators/changelog/versions/3.4.0.md +++ b/v3-docs/docs/generators/changelog/versions/3.4.0.md @@ -33,7 +33,7 @@ - Update TypeScript definitions for async support in accounts-base, [PR#13987](https://github.com/meteor/meteor/pull/13987) - Fix an error when files have identical names with different cases, [PR#13958](https://github.com/meteor/meteor/pull/13958) - Add experimental config disableBoilerplateResponse to improve React SSR, [PR#13855](https://github.com/meteor/meteor/pull/13855) -- Upgrade to Node v22.21.0, TypeScript 5.9.2 and SWC 1.15.3, [PR#13997](https://github.com/meteor/meteor/pull/13997) and [PR#13760](https://github.com/meteor/meteor/pull/13760) +- Upgrade to Node v22.22.0, TypeScript 5.9.2 and SWC 1.15.3, [PR#13997](https://github.com/meteor/meteor/pull/13997) and [PR#13760](https://github.com/meteor/meteor/pull/13760) All Merged PRs@[GitHub PRs 3.4](https://github.com/meteor/meteor/pulls?q=is%3Apr+is%3Amerged+base%3Arelease-3.4) @@ -76,7 +76,7 @@ Check out [the requirements for Meteor Bundler optimizations](https://deploy-pre **Add `rspack` package to enable the Rspack Bundler integration:** ```bash -meteor add rspack-rc340.3 +meteor add rspack-rc340.4 ``` > This package is added by default for new apps. @@ -93,29 +93,29 @@ If you find any issues, please report them to the [Meteor issues tracker](https: #### Bumped Meteor Packages -- accounts-base@3.2.0-rc340.3 -- accounts-password@3.2.2-rc340.3 -- accounts-ui-unstyled@1.8.0-rc340.3 -- accounts-ui@1.5.0-rc340.3 -- babel-compiler@7.13.0-rc340.3 -- boilerplate-generator@2.1.0-rc340.3 -- ecmascript@0.17.0-rc340.3 -- meteor@2.2.0-rc340.3 -- minifier-js@3.1.0-rc340.3 -- minimongo@2.0.5-rc340.3 -- mongo@2.2.0-rc340.3 -- react-fast-refresh@0.3.0-rc340.3 -- rspack@1.0.0-rc340.3 -- shell-server@0.7.0-rc340.3 -- standard-minifier-css@1.10.0-rc340.3 -- standard-minifier-js@3.2.0-rc340.3 -- standard-minifiers@1.2.0-rc340.3 -- static-html@1.5.0-rc340.3 -- test-in-browser@1.5.0-rc340.3 -- tools-core@1.0.0-rc340.3 -- typescript@5.9.3-rc340.3 -- webapp@2.1.0-rc340.3 -- meteor-tool@3.4.0-rc.3 +- accounts-base@3.2.0-rc340.4 +- accounts-password@3.2.2-rc340.4 +- accounts-ui-unstyled@1.8.0-rc340.4 +- accounts-ui@1.5.0-rc340.4 +- babel-compiler@7.13.0-rc340.4 +- boilerplate-generator@2.1.0-rc340.4 +- ecmascript@0.17.0-rc340.4 +- meteor@2.2.0-rc340.4 +- minifier-js@3.1.0-rc340.4 +- minimongo@2.0.5-rc340.4 +- mongo@2.2.0-rc340.4 +- react-fast-refresh@0.3.0-rc340.4 +- rspack@1.0.0-rc340.4 +- shell-server@0.7.0-rc340.4 +- standard-minifier-css@1.10.0-rc340.4 +- standard-minifier-js@3.2.0-rc340.4 +- standard-minifiers@1.2.0-rc340.4 +- static-html@1.5.0-rc340.4 +- test-in-browser@1.5.0-rc340.4 +- tools-core@1.0.0-rc340.4 +- typescript@5.9.3-rc340.4 +- webapp@2.1.0-rc340.4 +- meteor-tool@3.4.0-rc.4 #### Bumped NPM Packages From fd752c0045109d9d1b04b85b3623d2095cf428a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 28 Jan 2026 16:36:30 +0100 Subject: [PATCH 25/25] =?UTF-8?q?Meteor=20version=20to=203.4=C2=A0:comet:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/accounts-base/package.js | 2 +- packages/accounts-password/package.js | 2 +- packages/accounts-passwordless/package.js | 2 +- packages/accounts-ui-unstyled/package.js | 2 +- packages/accounts-ui/package.js | 2 +- packages/babel-compiler/package.js | 2 +- packages/boilerplate-generator/package.js | 2 +- packages/check/package.js | 2 +- packages/ecmascript/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/meteor/package.js | 2 +- packages/minifier-js/package.js | 2 +- packages/minimongo/package.js | 2 +- packages/mongo/package.js | 2 +- packages/react-fast-refresh/package.js | 2 +- packages/rspack/package.js | 2 +- packages/shell-server/package.js | 2 +- packages/standard-minifier-css/package.js | 2 +- packages/standard-minifier-js/package.js | 2 +- packages/standard-minifiers/package.js | 2 +- packages/static-html/package.js | 2 +- packages/test-in-browser/package.js | 2 +- packages/tools-core/package.js | 2 +- packages/typescript/package.js | 2 +- packages/webapp/package.js | 2 +- scripts/admin/meteor-release-official.json | 2 +- .../modern-tests/apps/solid/.meteor/versions | 4 +- .../modern-tests/apps/svelte/.meteor/versions | 4 +- tools/modern-tests/apps/vue/.meteor/versions | 4 +- v3-docs/docs/about/modern-build-stack.md | 2 +- .../rspack-bundler-integration.md | 2 +- .../generators/changelog/versions/3.4.0.md | 58 +++---- v3-docs/docs/history.md | 146 ++++++++++++++++++ 33 files changed, 210 insertions(+), 62 deletions(-) diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index 5a388ab704..931e4edb42 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "A user account system", - version: "3.2.0-rc340.4", + version: "3.2.0", }); Package.onUse((api) => { diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index 379ccabd99..6da4c3d030 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -5,7 +5,7 @@ Package.describe({ // 2.2.x in the future. The version was also bumped to 2.0.0 temporarily // during the Meteor 1.5.1 release process, so versions 2.0.0-beta.2 // through -beta.5 and -rc.0 have already been published. - version: "3.2.2-rc340.4", + version: "3.2.2", }); Npm.depends({ diff --git a/packages/accounts-passwordless/package.js b/packages/accounts-passwordless/package.js index d03cb0606d..0f1f62d4d7 100644 --- a/packages/accounts-passwordless/package.js +++ b/packages/accounts-passwordless/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'No-password login/sign-up support for accounts', - version: '3.1.0-rc340.4', + version: '3.1.0', }); Package.onUse(api => { diff --git a/packages/accounts-ui-unstyled/package.js b/packages/accounts-ui-unstyled/package.js index 54bb1f7281..b8b6caa59e 100644 --- a/packages/accounts-ui-unstyled/package.js +++ b/packages/accounts-ui-unstyled/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Unstyled version of login widgets', - version: '1.8.0-rc340.4', + version: '1.8.0', }); Package.onUse(function(api) { diff --git a/packages/accounts-ui/package.js b/packages/accounts-ui/package.js index 430d2afd08..714e4936c1 100644 --- a/packages/accounts-ui/package.js +++ b/packages/accounts-ui/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Simple templates to add login widgets to an app", - version: '1.5.0-rc340.4', + version: '1.5.0', }); Package.onUse(api => { diff --git a/packages/babel-compiler/package.js b/packages/babel-compiler/package.js index 43ad17fd6f..b907fd3c85 100644 --- a/packages/babel-compiler/package.js +++ b/packages/babel-compiler/package.js @@ -1,7 +1,7 @@ Package.describe({ name: "babel-compiler", summary: "Parser/transpiler for ECMAScript 2015+ syntax", - version: '7.13.0-rc340.4', + version: '7.13.0', devOnly: true, }); diff --git a/packages/boilerplate-generator/package.js b/packages/boilerplate-generator/package.js index 1ef3c388df..c068d9e490 100644 --- a/packages/boilerplate-generator/package.js +++ b/packages/boilerplate-generator/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Generates the boilerplate html from program's manifest", - version: '2.1.0-rc340.4', + version: '2.1.0', }); Npm.depends({ diff --git a/packages/check/package.js b/packages/check/package.js index 2006810167..a095044bbb 100644 --- a/packages/check/package.js +++ b/packages/check/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Check whether a value matches a pattern', - version: '1.5.0-rc340.4', + version: '1.5.0', }); Package.onUse(api => { diff --git a/packages/ecmascript/package.js b/packages/ecmascript/package.js index e048bbb2e5..c975433f37 100644 --- a/packages/ecmascript/package.js +++ b/packages/ecmascript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ecmascript', - version: '0.17.0-rc340.4', + version: '0.17.0', summary: 'Compiler plugin that supports ES2015+ in all .js files', documentation: 'README.md', }); diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index edb5a6372b..f009d06cfb 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: "3.4.0-rc.4", + version: "3.4.0", }); Package.includeTool(); diff --git a/packages/meteor/package.js b/packages/meteor/package.js index 6ddff07e1f..35bd3f00b6 100644 --- a/packages/meteor/package.js +++ b/packages/meteor/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Core Meteor environment", - version: '2.2.0-rc340.4', + version: '2.2.0', }); Package.registerBuildPlugin({ diff --git a/packages/minifier-js/package.js b/packages/minifier-js/package.js index ebfc942874..15a6012d09 100644 --- a/packages/minifier-js/package.js +++ b/packages/minifier-js/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "JavaScript minifier", - version: '3.1.0-rc340.4', + version: '3.1.0', }); Npm.depends({ diff --git a/packages/minimongo/package.js b/packages/minimongo/package.js index 4f30cadffd..42ffdf3101 100644 --- a/packages/minimongo/package.js +++ b/packages/minimongo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's client-side datastore: a port of MongoDB to Javascript", - version: "2.0.5-rc340.4", + version: "2.0.5", }); Package.onUse((api) => { diff --git a/packages/mongo/package.js b/packages/mongo/package.js index 58aef041a1..46a5776273 100644 --- a/packages/mongo/package.js +++ b/packages/mongo/package.js @@ -9,7 +9,7 @@ Package.describe({ summary: "Adaptor for using MongoDB and Minimongo over DDP", - version: "2.2.0-rc340.4", + version: "2.2.0", }); Npm.depends({ diff --git a/packages/react-fast-refresh/package.js b/packages/react-fast-refresh/package.js index 6be381b7f5..fb5dc1b720 100644 --- a/packages/react-fast-refresh/package.js +++ b/packages/react-fast-refresh/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'react-fast-refresh', - version: '0.3.0-rc340.4', + version: '0.3.0', summary: 'Automatically update React components with HMR', documentation: 'README.md', }); diff --git a/packages/rspack/package.js b/packages/rspack/package.js index 5c51d7adc2..5be0e1bdca 100644 --- a/packages/rspack/package.js +++ b/packages/rspack/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Integrate rspack into the Meteor lifecycle to run the bundler independently", - version: '1.0.0-rc340.4', + version: '1.0.0', }); Package.registerBuildPlugin({ diff --git a/packages/shell-server/package.js b/packages/shell-server/package.js index 9a0bd79805..885e168309 100644 --- a/packages/shell-server/package.js +++ b/packages/shell-server/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "shell-server", - version: '0.7.0-rc340.4', + version: '0.7.0', summary: "Server-side component of the `meteor shell` command.", documentation: "README.md", devOnly: true, diff --git a/packages/standard-minifier-css/package.js b/packages/standard-minifier-css/package.js index 442e17fea5..353a747f45 100644 --- a/packages/standard-minifier-css/package.js +++ b/packages/standard-minifier-css/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'standard-minifier-css', - version: '1.10.0-rc340.4', + version: '1.10.0', summary: 'Standard css minifier used with Meteor apps by default.', documentation: 'README.md', devOnly: true, diff --git a/packages/standard-minifier-js/package.js b/packages/standard-minifier-js/package.js index e24f035a5d..eccea4f462 100644 --- a/packages/standard-minifier-js/package.js +++ b/packages/standard-minifier-js/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'standard-minifier-js', - version: '3.2.0-rc340.4', + version: '3.2.0', summary: 'Standard javascript minifiers used with Meteor apps by default.', documentation: 'README.md', devOnly: true, diff --git a/packages/standard-minifiers/package.js b/packages/standard-minifiers/package.js index b947ec786b..acdd37f3c4 100644 --- a/packages/standard-minifiers/package.js +++ b/packages/standard-minifiers/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'standard-minifiers', - version: '1.2.0-rc340.4', + version: '1.2.0', summary: 'Standard minifiers used with Meteor apps by default.', documentation: 'README.md', devOnly: true, diff --git a/packages/static-html/package.js b/packages/static-html/package.js index 8456cf93bd..8b990e8958 100644 --- a/packages/static-html/package.js +++ b/packages/static-html/package.js @@ -1,7 +1,7 @@ Package.describe({ name: 'static-html', summary: "Define static page content in .html files", - version: '1.5.0-rc340.4', + version: '1.5.0', git: 'https://github.com/meteor/meteor.git', devOnly: true, }); diff --git a/packages/test-in-browser/package.js b/packages/test-in-browser/package.js index 7c78f8019f..1c9d96834a 100644 --- a/packages/test-in-browser/package.js +++ b/packages/test-in-browser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests interactively in the browser", - version: '1.5.0-rc340.4', + version: '1.5.0', documentation: null }); diff --git a/packages/tools-core/package.js b/packages/tools-core/package.js index a7b418f5cf..71a14de26c 100644 --- a/packages/tools-core/package.js +++ b/packages/tools-core/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Helpers for managing modern tools in Meteor", - version: '1.0.0-rc340.4', + version: '1.0.0', devOnly: true, }); diff --git a/packages/typescript/package.js b/packages/typescript/package.js index 78f1089932..2b75566208 100644 --- a/packages/typescript/package.js +++ b/packages/typescript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'typescript', - version: '5.9.3-rc340.4', + version: '5.9.3', summary: 'Compiler plugin that compiles TypeScript and ECMAScript in .ts and .tsx files', documentation: 'README.md', diff --git a/packages/webapp/package.js b/packages/webapp/package.js index ca1b7c9b16..6a2bb3d3ff 100644 --- a/packages/webapp/package.js +++ b/packages/webapp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Serves a Meteor app over HTTP", - version: "2.1.0-rc340.4", + version: "2.1.0", }); Npm.depends({ diff --git a/scripts/admin/meteor-release-official.json b/scripts/admin/meteor-release-official.json index 7b89d5c0a6..45e025b42e 100644 --- a/scripts/admin/meteor-release-official.json +++ b/scripts/admin/meteor-release-official.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "3.3.2", + "version": "3.4", "recommended": false, "official": true, "description": "The Official Meteor Distribution" diff --git a/tools/modern-tests/apps/solid/.meteor/versions b/tools/modern-tests/apps/solid/.meteor/versions index 605d3c318b..f4b6296c13 100644 --- a/tools/modern-tests/apps/solid/.meteor/versions +++ b/tools/modern-tests/apps/solid/.meteor/versions @@ -54,14 +54,14 @@ reactive-var@1.0.13 reload@1.3.2 retry@1.1.1 routepolicy@1.1.2 -rspack@1.0.0-rc340.4 +rspack@1.0.0 shell-server@0.6.1 socket-stream-client@0.6.1 standard-minifier-css@1.9.3 standard-minifier-js@3.1.1 static-html@1.4.0 static-html-tools@1.0.0 -tools-core@1.0.0-rc340.4 +tools-core@1.0.0 tracker@1.3.4 typescript@5.6.5 webapp@2.0.7 diff --git a/tools/modern-tests/apps/svelte/.meteor/versions b/tools/modern-tests/apps/svelte/.meteor/versions index 1459fdf1b3..65dd067371 100644 --- a/tools/modern-tests/apps/svelte/.meteor/versions +++ b/tools/modern-tests/apps/svelte/.meteor/versions @@ -53,14 +53,14 @@ react-fast-refresh@0.2.9 reload@1.3.2 retry@1.1.1 routepolicy@1.1.2 -rspack@1.0.0-rc340.4 +rspack@1.0.0 shell-server@0.6.1 socket-stream-client@0.6.1 standard-minifier-css@1.9.3 standard-minifier-js@3.1.1 static-html@1.4.0 static-html-tools@1.0.0 -tools-core@1.0.0-rc340.4 +tools-core@1.0.0 tracker@1.3.4 typescript@5.6.5 webapp@2.0.7 diff --git a/tools/modern-tests/apps/vue/.meteor/versions b/tools/modern-tests/apps/vue/.meteor/versions index 605d3c318b..f4b6296c13 100644 --- a/tools/modern-tests/apps/vue/.meteor/versions +++ b/tools/modern-tests/apps/vue/.meteor/versions @@ -54,14 +54,14 @@ reactive-var@1.0.13 reload@1.3.2 retry@1.1.1 routepolicy@1.1.2 -rspack@1.0.0-rc340.4 +rspack@1.0.0 shell-server@0.6.1 socket-stream-client@0.6.1 standard-minifier-css@1.9.3 standard-minifier-js@3.1.1 static-html@1.4.0 static-html-tools@1.0.0 -tools-core@1.0.0-rc340.4 +tools-core@1.0.0 tracker@1.3.4 typescript@5.6.5 webapp@2.0.7 diff --git a/v3-docs/docs/about/modern-build-stack.md b/v3-docs/docs/about/modern-build-stack.md index b43ae76aa6..7deba2615a 100644 --- a/v3-docs/docs/about/modern-build-stack.md +++ b/v3-docs/docs/about/modern-build-stack.md @@ -46,7 +46,7 @@ Starting with Meteor 3.4 Add this Atmosphere package to your app: ``` bash -meteor add rspack@1.0.0-rc340.4 +meteor add rspack@1.0.0 ``` On first run, the package installs the required Rspack setup at the project level. It compiles your app code with Rspack to get the full benefit of this integration. diff --git a/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md b/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md index 8c870d4edc..72f3d02d17 100644 --- a/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md +++ b/v3-docs/docs/about/modern-build-stack/rspack-bundler-integration.md @@ -18,7 +18,7 @@ Starting with Meteor 3.4 Add this Atmosphere package to your app: ``` bash -meteor add rspack@1.0.0-rc340.4 +meteor add rspack@1.0.0 ``` On first run, the package installs the required Rspack setup at the project level. It compiles your app code with Rspack to get the full benefit of this integration. diff --git a/v3-docs/docs/generators/changelog/versions/3.4.0.md b/v3-docs/docs/generators/changelog/versions/3.4.0.md index 3290650eb7..a1b26b52b8 100644 --- a/v3-docs/docs/generators/changelog/versions/3.4.0.md +++ b/v3-docs/docs/generators/changelog/versions/3.4.0.md @@ -1,9 +1,9 @@ -## v3.4.0, not yet +## v3.4.0, 30-01-2026 ### Highlights - **Meteor-Rspack Integration**, [PR#13910](https://github.com/meteor/meteor/pull/13910) - - ⚡ New `rspack` package + - ⚡ New `rspack` atmosphere package (requires at least rspack@1.7.1) Orchestrates the full Rspack setup, including the development server and production builds. - 📦 New `@meteorjs/rspack` npm package Provides a default rspack.config.js. Applications can extend or override this configuration with their own. @@ -37,7 +37,9 @@ All Merged PRs@[GitHub PRs 3.4](https://github.com/meteor/meteor/pulls?q=is%3Apr+is%3Amerged+base%3Arelease-3.4) -React Packages Changelog: react-meteor-data@4.0.1 (TODO) +React Packages: +- [react-meteor-data@4.0.1](https://github.com/meteor/react-packages/blob/master/packages/react-meteor-data/CHANGELOG.md#v401-2026-1-30) +- [react-template-helper@0.4.0](https://github.com/meteor/react-packages/blob/master/packages/react-template-helper/CHANGELOG.md#v040-2026-1-30) #### Breaking Changes @@ -58,7 +60,7 @@ meteor update --release 3.4-rc.3 To apply `react-meteor-data` changes: ```bash -meteor add react-meteor-data@4.0.1-rc.1 +meteor add react-meteor-data@4.0.1 ``` --- @@ -76,7 +78,7 @@ Check out [the requirements for Meteor Bundler optimizations](https://deploy-pre **Add `rspack` package to enable the Rspack Bundler integration:** ```bash -meteor add rspack-rc340.4 +meteor add rspack ``` > This package is added by default for new apps. @@ -93,29 +95,29 @@ If you find any issues, please report them to the [Meteor issues tracker](https: #### Bumped Meteor Packages -- accounts-base@3.2.0-rc340.4 -- accounts-password@3.2.2-rc340.4 -- accounts-ui-unstyled@1.8.0-rc340.4 -- accounts-ui@1.5.0-rc340.4 -- babel-compiler@7.13.0-rc340.4 -- boilerplate-generator@2.1.0-rc340.4 -- ecmascript@0.17.0-rc340.4 -- meteor@2.2.0-rc340.4 -- minifier-js@3.1.0-rc340.4 -- minimongo@2.0.5-rc340.4 -- mongo@2.2.0-rc340.4 -- react-fast-refresh@0.3.0-rc340.4 -- rspack@1.0.0-rc340.4 -- shell-server@0.7.0-rc340.4 -- standard-minifier-css@1.10.0-rc340.4 -- standard-minifier-js@3.2.0-rc340.4 -- standard-minifiers@1.2.0-rc340.4 -- static-html@1.5.0-rc340.4 -- test-in-browser@1.5.0-rc340.4 -- tools-core@1.0.0-rc340.4 -- typescript@5.9.3-rc340.4 -- webapp@2.1.0-rc340.4 -- meteor-tool@3.4.0-rc.4 +- accounts-base@3.2.0 +- accounts-password@3.2.2 +- accounts-ui-unstyled@1.8.0 +- accounts-ui@1.5.0 +- babel-compiler@7.13.0 +- boilerplate-generator@2.1.0 +- ecmascript@0.17.0 +- meteor@2.2.0 +- minifier-js@3.1.0 +- minimongo@2.0.5 +- mongo@2.2.0 +- react-fast-refresh@0.3.0 +- rspack@1.0.0 +- shell-server@0.7.0 +- standard-minifier-css@1.10.0 +- standard-minifier-js@3.2.0 +- standard-minifiers@1.2.0 +- static-html@1.5.0 +- test-in-browser@1.5.0 +- tools-core@1.0.0 +- typescript@5.9.3 +- webapp@2.1.0 +- meteor-tool@3.4.0 #### Bumped NPM Packages diff --git a/v3-docs/docs/history.md b/v3-docs/docs/history.md index ce2cf1745d..4644bbb281 100644 --- a/v3-docs/docs/history.md +++ b/v3-docs/docs/history.md @@ -10,7 +10,152 @@ This is a complete history of changes for Meteor releases. [//]: # (go to meteor/docs/generators/changelog/docs) +## v3.4.0, 30-01-2026 +### Highlights + +- **Meteor-Rspack Integration**, [PR#13910](https://github.com/meteor/meteor/pull/13910) + - ⚡ New `rspack` atmosphere package (requires at least rspack@1.7.1) + Orchestrates the full Rspack setup, including the development server and production builds. + - 📦 New `@meteorjs/rspack` npm package + Provides a default rspack.config.js. Applications can extend or override this configuration with their own. + - 🛠️ New `tools-core` package + Supplies runtime utilities for Meteor, designed to support this integration and future tool integrations. + - 🔑 Core updates + Enhanced Meteor’s core to support the Rspack integration. + - ✅ Test suite additions + Introduced tests for app skeletons and Meteor-Rspack features to ensure quality and reliability. + - 📃 [Documentation](https://deploy-preview-13915.docs-online.meteor.com/about/modern-build-stack/rspack-bundler-integration.html) + Complete documentation section covering all details of the Meteor-Rspack integration, including migration guides, configuration helpers and more. + - Adopting Rspack gives you a faster build experience + - Adopting Rspack produces smaller bundle sizes through advanced tree shaking + - Adopting Rspack lets you extend your app with modern setups and tooling +- Support for `devOnly` packages and `Npm.devDepends` to optimize production builds, [PR#13797](https://github.com/meteor/meteor/pull/13797) +- Introduced `Meteor.deferDev` to optimize server startup during development, [PR#14006](https://github.com/meteor/meteor/pull/14006) +- Optimize react-meteor-data Suspense hooks and isEqual checks, [PR#456](https://github.com/meteor/react-packages/pull/456) +- Meteor runtime now shows `--raw-logs` by default, use `--timestamps` to keep timestamps, [PR#13944](https://github.com/meteor/meteor/pull/13944) +- Integrate `collection-extensions` into core, [PR#13830](https://github.com/meteor/meteor/pull/13830) +- Fix OPLOG includeCollections/excludeCollections when admin.$cmd happens, [PR#13949](https://github.com/meteor/meteor/pull/13949) +- Report Mongo SIGILL crash errors, [PR#13930](https://github.com/meteor/meteor/pull/13930) +- Fix bulk remove in LocalCollection to remove all items, [PR#13965](https://github.com/meteor/meteor/pull/13965) +- Treat web.cordova as a modern architecture, [PR#13983](https://github.com/meteor/meteor/pull/13983) +- Improve and beautify server error messages, [PR#13848](https://github.com/meteor/meteor/pull/13848) +- Upgrade Accounts UI CSS (breaking visual change for accounts-ui users), [PR#13840](https://github.com/meteor/meteor/pull/13840) +- Support NonEmptyString to check package, [#12852](https://github.com/meteor/meteor/pull/12852) +- Update TypeScript definitions for async support in accounts-base, [PR#13987](https://github.com/meteor/meteor/pull/13987) +- Fix an error when files have identical names with different cases, [PR#13958](https://github.com/meteor/meteor/pull/13958) +- Add experimental config disableBoilerplateResponse to improve React SSR, [PR#13855](https://github.com/meteor/meteor/pull/13855) +- Upgrade to Node v22.22.0, TypeScript 5.9.2 and SWC 1.15.3, [PR#13997](https://github.com/meteor/meteor/pull/13997) and [PR#13760](https://github.com/meteor/meteor/pull/13760) + +All Merged PRs@[GitHub PRs 3.4](https://github.com/meteor/meteor/pulls?q=is%3Apr+is%3Amerged+base%3Arelease-3.4) + +React Packages: +- [react-meteor-data@4.0.1](https://github.com/meteor/react-packages/blob/master/packages/react-meteor-data/CHANGELOG.md#v401-2026-1-30) +- [react-template-helper@0.4.0](https://github.com/meteor/react-packages/blob/master/packages/react-template-helper/CHANGELOG.md#v040-2026-1-30) + +#### Breaking Changes + +- `accounts-ui` CSS has changed, [PR#13840](https://github.com/meteor/meteor/pull/13840) + +#### Internal API changes + +N/A + +#### Migration Steps + +Please run the following command to update your project: + +```bash +meteor update --release 3.4-rc.3 +``` + +To apply `react-meteor-data` changes: + +```bash +meteor add react-meteor-data@4.0.1 +``` + +--- + +**Add this to your `package.json` to enable the new modern build stack:** + +```json +"meteor": { + "modern": true +} +``` + +Check out [the requirements for Meteor Bundler optimizations](https://deploy-preview-13915.docs-online.meteor.com/about/modern-build-stack/meteor-bundler-optimizations.html#requirements) on existing apps. + +**Add `rspack` package to enable the Rspack Bundler integration:** + +```bash +meteor add rspack +``` + +> This package is added by default for new apps. + +Check out [the requirements for Rspack Bundler integration](https://deploy-preview-13915.docs-online.meteor.com/about/modern-build-stack/rspack-bundler-integration.html#requirements) on existing apps. + +### [📃 Modern Build Stack docs](https://deploy-preview-13915.docs-online.meteor.com/about/modern-build-stack.html) + +### [☄️ Meteor Bundler optimizations docs](https://deploy-preview-13915.docs-online.meteor.com/about/modern-build-stack/meteor-bundler-optimizations.html) + +### [⚡ Rspack Bundler integration docs](https://deploy-preview-13915.docs-online.meteor.com/about/modern-build-stack/rspack-bundler-integration.html) + +If you find any issues, please report them to the [Meteor issues tracker](https://github.com/meteor/meteor). + +#### Bumped Meteor Packages + +- accounts-base@3.2.0 +- accounts-password@3.2.2 +- accounts-ui-unstyled@1.8.0 +- accounts-ui@1.5.0 +- babel-compiler@7.13.0 +- boilerplate-generator@2.1.0 +- ecmascript@0.17.0 +- meteor@2.2.0 +- minifier-js@3.1.0 +- minimongo@2.0.5 +- mongo@2.2.0 +- react-fast-refresh@0.3.0 +- rspack@1.0.0 +- shell-server@0.7.0 +- standard-minifier-css@1.10.0 +- standard-minifier-js@3.2.0 +- standard-minifiers@1.2.0 +- static-html@1.5.0 +- test-in-browser@1.5.0 +- tools-core@1.0.0 +- typescript@5.9.3 +- webapp@2.1.0 +- meteor-tool@3.4.0 + +#### Bumped NPM Packages + +- @meteorjs/rspack@1.0.0 + +#### Special thanks to + +✨✨✨ + +- [@nachocodoner](https://github.com/nachocodoner) +- [@italojs](https://github.com/italojs) +- [@Grubba27](https://github.com/Grubba27) +- [@welkinwong](https://github.com/welkinwong) +- [@harryadel](https://github.com/harryadel) +- [@vparpoil](https://github.com/vparpoil) +- [@StorytellerCZ](https://github.com/StorytellerCZ) +- [@turoar23](https://github.com/turoar23) +- [@DipakHalkude](https://github.com/DipakHalkude) +- [@sanki92](https://github.com/sanki92) +- [@evolross](https://github.com/evolross) +- [@malua](https://github.com/malua) +- [@tmeyer24](https://github.com/tmeyer24) +- [@jeetburman](https://github.com/jeetburman) +- [@copleykj](https://github.com/copleykj) + + ✨✨✨ ## v3.3.2, 01-09-2025 @@ -81,6 +226,7 @@ If you find any issues, please report them to the [Meteor issues tracker](https: - [@copleykj](https://github.com/copleykj) ✨✨✨ + ## v3.3.1, 05-08-2025 ### Highlights