From d88520469fbef594e1f11eaf3089f1c4e89e5154 Mon Sep 17 00:00:00 2001 From: Frederico Maia Arantes Date: Fri, 18 Mar 2022 10:55:14 -0300 Subject: [PATCH] Fix the migration guide. --- guide/source/2.7-migration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/source/2.7-migration.md b/guide/source/2.7-migration.md index 2c8e74f2bb..22bbb4fac8 100644 --- a/guide/source/2.7-migration.md +++ b/guide/source/2.7-migration.md @@ -10,10 +10,10 @@ The above being said, there are a few items that you should do to have the lates

Update meteor-node-stubs

As we added support for [node:](https://nodejs.org/api/esm.html#node-imports) imports, you need to -update `meteor-node-stubs` to its latest version: +update `meteor-node-stubs` to version `1.2.1`: ```bash -meteor npm install meteor-node-stubs@latest +meteor npm install meteor-node-stubs@1.2.1 ```

Support for PostCSS

@@ -27,7 +27,7 @@ meteor add standard-minifier-css There are two differences with `juliancwirko:postcss`: -- The `excludePackages` PostCSS option was renamed to `excludeMeteorPackages` +- The `excludedPackages` PostCSS option was renamed to `excludedMeteorPackages` - Files with the `.import.css` extension are not treated specially > Note: In beta.1 of Meteor 2.7 we had added a new core package `minifier-css-postcss` but later decided to unify everything inside `standard-minifier-css`. So you shouldn't use `minifier-css-postcss`.