A set of plugins for esbuild, Rollup, Vite, and Webpack that integrate Atomizer, an atomic CSS generator. Current stable version is 1.2.1. The library uses the unplugin system for unified plugin API across all build tools. Released under the MIT license. Key differentiator: single API for multiple bundlers, TypeScript definitions included. Release cadence is irregular; latest version published 6 months ago.
npm install atomizer-pluginsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to configure the Vite plugin with Atomizer rules for atomic CSS classes.
Ensure unplugin is pinned to compatible version (^0.x) or upgrade atomizer-plugins when v2 is released.
Ensure atomizer-plugins is the last plugin in the array.
Use dynamic import: const { rollup } = await import('atomizer-plugins'); or set project to type: 'module'.Provide config object directly, not a path string. Use require() or import as shown in docs.
Run 'npm install atomizer-plugins' and ensure package is present.
Use 'import { rollup } from 'atomizer-plugins';' instead of 'import atomizer from 'atomizer-plugins';'Pin unplugin to version ^0.x in your project's package.json.
Ensure you import the correct named export (e.g., { vite } ) and call it as a function inside plugins array.