You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2022. It is now read-only.
-[Selected text variants](#selected-text-variants)
@@ -52,11 +52,13 @@ Here are the highlights:
52
52
53
53
For the full details, [check out the release notes](https://github.com/tailwindlabs/tailwindcss/releases/tag/v2.2.0) on GitHub.
54
54
55
+
It's important to note that although this is a minor release and there are no breaking changes in the classic engine, **Just-in-Time mode is still in preview and v2.2 introduces a few very small changes that might impact you**, so make sure you read through the [changes and deprecations](https://github.com/tailwindlabs/tailwindcss/releases/tag/v2.2.0#changes-and-deprecations) in the release notes when upgrading.
We've rewritten the Tailwind CLI tool from the ground-up with a performance-first mindset, while also adding support for a bunch of new features.
62
64
@@ -315,7 +317,7 @@ We'll probably flesh this out even more over time as people discover new edge ca
315
317
316
318
Since Tailwind introduces a lot of non-standard CSS at-rules like `@tailwind` and `@apply`, you can often run into weird output when combining it with a PostCSS nesting plugin like `postcss-nested` or `postcss-nesting`.
317
319
318
-
To ease the pain here, we've released a new PostCSS plugin called [@tailwindcss/nesting](https://github.com/tailwindlabs/tailwindcss-nesting) that acts as a lightweight compatibility layer between existing nesting plugins and Tailwind itself.
320
+
To ease the pain here, we've included a new PostCSS plugin in the `tailwindcss` package that acts as a lightweight compatibility layer between existing nesting plugins and Tailwind itself.
319
321
320
322
So if you need nesting support in your project, use our plugin, and stick it before Tailwind in your PostCSS plugin list:
321
323
@@ -324,7 +326,7 @@ So if you need nesting support in your project, use our plugin, and stick it bef
324
326
module.exports= {
325
327
plugins: [
326
328
// ...
327
-
require('@tailwindcss/nesting'),
329
+
require('tailwindcss/nesting'),
328
330
require('tailwindcss'),
329
331
// ...
330
332
],
@@ -338,7 +340,7 @@ By default, it uses `postcss-nested` under the hood _(since that's what we use t
@@ -532,4 +534,4 @@ To upgrade to Tailwind CSS v2.2, install the latest release from npm:
532
534
npm install -D tailwindcss@latest
533
535
```
534
536
535
-
Although this is a minor release and there are no breaking changes in the classic engine, Just-in-Time mode is still in preview and v2.2 introduces a few very small changes that might impact you, so make sure you read through the [changes and deprecations](#) in the release notes.
537
+
If you are using the Just-in-Time mode preview, you'll also want to read through the [changes and deprecations](https://github.com/tailwindlabs/tailwindcss/releases/tag/v2.2.0#changes-and-deprecations) in the release notes.
0 commit comments