Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Adds a build action to process stylesheets through postcss/tailwind

License

Notifications You must be signed in to change notification settings

BamButz/msbuild-tailwindcss

Repository files navigation

Welcome to MSBuild TailwindCSS 👋

Nuget Nuget GitHub

Package adds a build action "TailwindCSS" that will send marked files to postcss with tailwindcss plugin configured

Activated PostCSS Plugins:

  • tailwindcss
  • nesting
  • cssnano

Installation

The extension can be retrieved via nuget.org

dotnet add package BamButz.MSBuild.TailwindCSS

Usage

Simply set the build action of your stylesheet to TailwindCSS during build the extension will output a file with .min.css extension and the same name and location as its source file

I set up a test file in the project so that you can understand the usage.

Tailwind Configuration

A tailwind.config.js must exist in the same directory as your project file (.csproj). During the first build of your project after adding this extension, a minimal tailwind.config.js will be added to your project if one is not already present. This allows the incremental build process to work. Each change you make to this file will result in a rebuild of your css files.

Plugins

If you want to use any of the official tailwindcss plugins you can simply specify them in your tailwind.config.js file (see example below) and they will automatically be included in your compiled css.

// tailwind.config.js
module.exports = {
  // ...
  plugins: [
    require('@tailwindcss/typography'),
    require('@tailwindcss/forms'),
    require('@tailwindcss/line-clamp'),
    require('@tailwindcss/aspect-ratio'),
  ]
}

Contribution

If you have any ideas to improve this extension, don't be afraid to open an issue. 🙂

About

Adds a build action to process stylesheets through postcss/tailwind

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published