tailwindcss.cli 3.2.7

.NET 6.0
dotnet tool install --global tailwindcss.cli --version 3.2.7
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local tailwindcss.cli --version 3.2.7
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=tailwindcss.cli&version=3.2.7
nuke :add-package tailwindcss.cli --version 3.2.7

A dotnet tool to install the tailwindcss cli for windows (x64), macos (x64 and arm64) and linux (x64 and arm64).

Installation

Global install

dotnet tool install --global tailwindcss.cli

Once installed, tailwindcss should now be added to the path and invokable in your command prompts or terminals.

Note: on macos when using the default terminal zsh, globally installed tools will not be found. They will be found however if you use a bash shell.

To add globally installed tools to your zsh profile, edit ~/.zshrc and add the following line:

export PATH=$HOME/.dotnet/tools:$PATH

See: https://github.com/dotnet/sdk/issues/9415 for more information.

Local install

dotnet tool install tailwindcss.cli

Once installed, dotnet tailwindcss should now be invokable in your command prompts or terminals.

Installing specific versions

# global installs
dotnet tool install tailwindcss.cli --version 3.0.10 --global

# local installs
dotnet tool install tailwindcss.cli --version 3.0.10

Upgrading installations

# global installs
dotnet tool update tailwindcss.cli --version 3.0.10 --global

# local installs
dotnet tool update tailwindcss.cli --version 3.0.11

Uninstallation

# global installs
dotnet tool uninstall tailwindcss.cli --global

# local installs
dotnet tool uninstall tailwindcss.cli

Bootstrap process

On initial run, there is a bootstrap process to download the platform specific tailwindcss cli binary to be used. e.g.:

PS C:\Users\Duane> tailwindcss
Running on windows-x64, downloading tailwindcss cli v3.0.23 using nuget...
Package found in repository nuget.org: https://api.nuget.org/v3/index.json
Downloaded package tailwindcss.cli.windows.x64 v3.0.23 from nuget.org.
Extracting tailwindcss cli for windows-x64...

tailwindcss v3.0.23

Usage:
   tailwindcss [--input input.css] [--output output.css] [--watch] [options...]
   tailwindcss init [--full] [--postcss] [options...]
...
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
3.2.7 1,216 3/20/2023
3.2.6 335 3/20/2023
3.2.5 297 3/20/2023
3.2.4 588 12/5/2022
3.2.3 374 12/5/2022
3.2.2 392 12/5/2022
3.2.1 598 10/22/2022
3.2.0 455 10/22/2022
3.1.8 528 8/20/2022
3.1.7 433 8/20/2022
3.1.6 495 7/19/2022
3.1.5 530 7/19/2022
3.1.4 487 7/19/2022
3.1.3 512 7/19/2022
3.1.2 539 7/19/2022
3.1.1 537 7/19/2022
3.1.0 477 7/19/2022
3.0.24 565 7/19/2022
3.0.23 474 7/19/2022
3.0.22 516 7/19/2022
3.0.21 519 7/19/2022
3.0.20 568 7/19/2022
3.0.19 488 7/19/2022
3.0.18 526 7/19/2022
3.0.17 533 7/19/2022
3.0.16 538 7/19/2022
3.0.15 591 7/19/2022
3.0.14 561 7/19/2022
3.0.13 543 7/19/2022
3.0.12 515 7/19/2022
3.0.11 555 7/19/2022

### Fixed

- Fix use of `:where(.btn)` when matching `!btn` ([#10601](https://github.com/tailwindlabs/tailwindcss/pull/10601))
- Revert including `outline-color` in `transition` and `transition-colors` by default ([#10604](https://github.com/tailwindlabs/tailwindcss/pull/10604))