| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A monorepo housing all of Toolwind's Tailwind CSS plugins, along with the shared types and utilities they build on. Each plugin keeps its own package.json and is versioned and published to npm independently — this repo just brings them under one umbrella for shared code, unified docs, and easier maintenance.
Each plugin's full documentation lives in its own README, linked below. Version badges reflect the latest published release on npm.
| Plugin | Package | Version | Description |
|---|---|---|---|
| Anchors | @toolwind/anchors | Declarative CSS anchor positioning relative to custom anchors | |
| Corner Shape | @toolwind/corner-shape | Utilities for applying corner shapes to elements | |
| Tagged Combinators | @toolwind/tagged-combinators | Tagged combinator support for targeting children and descendants | |
| Default Shades | tailwindcss-default-shades | Default shades for colors — bg-blue instead of bg-blue-500 | |
| JS Context | tailwindcss-js-context | JS script injection utility for Tailwind CSS | |
| Lerp Colors | tailwindcss-lerp-colors | Interpolate between configured colors for additional color stops | |
| Members | tailwindcss-members | The inverse of group — style a parent based on its descendants | |
| Mixins | tailwindcss-mixins | A mixin variant/utility pair for reusable groups of utilities | |
| Multi | tailwindcss-multi | Group multiple utilities together in a single declaration | |
| Relational | tailwindcss-selector-patterns | Dynamic selector patterns for relational element targeting | |
| Shadows | tailwindcss-directional-shadows | Directional shadow support for box shadows | |
| Signals | tailwindcss-signals | Apply styles based on ancestor state via style queries |
plugins/ One folder per plugin — each with its own package.json, docs, and
independent npm releases (full git history preserved on import)
shared/ Private workspace packages shared across plugins at build time
(@toolwind/types, @toolwind/utils) — see shared/README.md
This repo is a pnpm workspace orchestrated by Turborepo. Install everything from the repo root:
pnpm installEveryday tasks run through the root scripts (all cached and parallelized by turbo):
pnpm run build # build every package (tsdown → dual ESM/CJS + .d.ts)
pnpm run typecheck # tsc --noEmit in every package (TypeScript 7 / tsgo)
pnpm run test # run test suites (jest)
pnpm run check # lint + format check (Ultracite: Oxlint + Oxfmt)
pnpm run fix # auto-fix lint findings and reformat
pnpm run publint # validate every plugin's publish artifactsScope any task to one package with a filter, or cd into its folder and run scripts directly:
pnpm --filter @toolwind/anchors run buildEach plugin is published independently under its own name and version:
pnpm --filter @toolwind/anchors publishPlugins with a prepublishOnly build step will build automatically on publish. The shared/* packages are private and are never published; anything a plugin uses from them gets bundled into that plugin's dist at build time — see shared/README.md.
MIT © Brandon McConnell
| Back | FazBrowse Home | New Git URL |