@roots/bud-tailwindcss
TypeScript icon, indicating that this package has built-in type declarations

6.21.0 • Public • Published

bud.js

MIT License npm Follow Roots

@roots/bud-tailwindcss

Adds tailwindcss support to Bud


Installation

Install @roots/bud-tailwindcss to your project.

Yarn:

yarn add @roots/bud-tailwindcss --dev

npm:

npm install @roots/bud-tailwindcss --save-dev

By default the bud.js tailwind implementation requires no configuration.

If you wish to customize the tailwind configuration you can create a tailwind config file.

bud.js allows for you to write your tailwind config in CommonJS, ESM, TypeScript, JSON or YML. This file should be placed in the root of your project or the project ./config directory.

Configuring tailwind with bud.tailwind

You can configure tailwind directly in your bud configuration file using bud.tailwind.setConfig.

bud.tailwind.setConfig({
  content: [bud.path(`@src/**/*.{ts,php}`)],
  theme: {},
  plugins: [],
});

bud.tailwind.setConfig is just one method available to help you configure tailwindcss.

Set content

You can set the tailwindcss content option with bud.tailwind.setContent.

bud.tailwind.setContent([bud.path(`@src/**/*.{ts,php}`)]);

Set theme

You can set the tailwindcss theme option with bud.tailwind.setTheme.

bud.tailwind.setTheme({
  colors: { primary: `#000000` },
});

Extend theme

You can extend the tailwindcss theme option with bud.tailwind.extendTheme.

bud.tailwind.extendTheme({
  colors: { primary: `#000000` },
});

This is usually preferred over bud.tailwind.setTheme as it will merge your theme with the default tailwindcss theme.

Set plugins

You can set the tailwindcss plugins option with bud.tailwind.setPlugins.

import forms from "@tailwindcss/forms";

export default async (bud) => {
  bud.tailwind.setPlugins([forms]);
};

Using tailwind values in build config files

You can use resolved tailwind values in your bud config files by referencing bud.tailwind.theme:

export default async (bud) => {
  console.log(`colors`, bud.tailwind.theme.colors);
};

You can also use bud.tailwind.getTheme, which allows you to pass a key to get a specific value:

export default async (bud) => {
  console.log(`colors`, bud.tailwind.getTheme(`colors`));
};

Using tailwind values in JS source

bud.js can be configured to allow for you to import tailwind theme values using the (virtual) @tailwind/* alias.

An example:

import { black } from "@tailwind/colors";
import { sans } from "@tailwind/fontFamily";

export const main = () => {
  document.body.style.backgroundColor = black;
  document.body.style.fontFamily = sans;
};

Generating the imports can be memory intensive and increase build times, so it is opt-in.

bud.tailwind.generateImports();

Better to generate imports only for specific keys:

bud.tailwind.generateImports([`colors`, `fontFamily`]);

This is a much better than trying to import the actual tailwind config file to read these values for two reasons:

  1. the values are fully resolved (merged with preset tailwindcss theme values, plugins applied, etc.)
  2. there is less impact on the overall bundle size

If you don't import from @tailwind/* nothing is added to the bundle (even if the imports are generated)

Contributing

Contributions are welcome from everyone.

We have contribution guidelines to help you get started.

License

@roots/bud-tailwindcss is licensed under MIT.

Community

Keep track of development and community news.

Sponsors

Bud is an open source project and completely free to use.

However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider sponsoring Roots.

KM Digital Carrot WordPress.com Worksite Safety Copia Digital Freave

Package Sidebar

Install

npm i @roots/bud-tailwindcss

Weekly Downloads

3,881

Version

6.21.0

License

MIT

Unpacked Size

33.2 kB

Total Files

18

Last publish

Collaborators

  • qwp6t
  • swalkinshaw
  • retlehs
  • log1x
  • kellymears