npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hahalosah/vite-plugin-purgecss

v1.1.0

Published

Vite plugin for removing unused CSS from generated bundles with PurgeCSS.

Downloads

5

Readme

@mojojoejo/vite-plugin-purgecss

npm version  GitHub release  Codacy coverage  Codacy grade  Snyk vulnerabilities

Vite plugin for removing unused CSS from generated bundles using PurgeCSS.

📦 Install

Using npm:

npm install --save-dev @mojojoejo/vite-plugin-purgecss

Using yarn:

yarn add --dev @mojojoejo/vite-plugin-purgecss

Using pnpm:

pnpm add --save-dev @mojojoejo/vite-plugin-purgecss

🚀 Usage

Basic

Omitting the options argument will use the default PurgeCSS options to clean the CSS output of the Vite build.

// vite.config.ts
import pluginPurgeCss from "@mojojoejo/vite-plugin-purgecss";

export default {
  plugins: [
    pluginPurgeCss(),
  ],
};

With CSS Variables

To remove unused CSS variable declarations and invalid var() functions, enable the variables PurgeCSS option.

// vite.config.ts
import pluginPurgeCss from "@mojojoejo/vite-plugin-purgecss";

export default {
  plugins: [
    pluginPurgeCss({
      variables: true,
    }),
  ],
};

With external files

To recognize class names defined in external JavaScript/TypeScript files, or any other asset file, use the content option to include extracted values.

An array of CSS file names or raw values can be passed with the css option to add CSS content to the output of PurgeCSS.

// content/path/custom-classes.ts
const customClasses = [
  "custom-class-01",
  "custom-class-02",
];

export default customClasses;
/* css/path/custom-styles.css */
:root {
  --custom-property-01: 50% 50%;
  --custom-property-02: 0 4px 4px rgb(0 0 0 / 0.2);
}
// vite.config.ts
import pluginPurgeCss from "@mojojoejo/vite-plugin-purgecss";

export default {
  plugins: [
    pluginPurgeCss({
      content: ["content/path/custom-classes.ts"],
      css: ["css/path/custom-styles.css"],
      variables: true,
    }),
  ],
};

⚠️ Note:

  • Using the content or css options circumvents the Vite build process (i.e., these values will only be seen by the PurgeCSS process). Do not pass files to these options that require processing by Vite.

With CSS Modules

Vite uses postcss-modules to handle CSS modules, exporting a JSON object with initial class names as keys and local hashed class names as values. This feature allows @mojojoejo/vite-plugin-purgecss to pick up the modified class names using the default content array. Therefore, there should be no further configuration needed to support CSS Modules.

If you would like to customize this behavior, see the Options section for more information on configuring Vite and PurgeCSS output.

⚙️ Options

An Options object may be passed as the only argument to the plugin. The shape of the options object matches that of the PurgeCSS configuration file. Refer to the PurgeCSS documentation for more information on how to configure PurgeCSS.

type Options = Partial<UserDefinedOptions>;

interface UserDefinedOptions {
  content: Array<string | RawContent>;
  css: Array<string | RawCSS>;
  defaultExtractor?: ExtractorFunction;
  extractors?: Array<Extractors>;
  fontFace?: boolean;
  keyframes?: boolean;
  output?: string;
  rejected?: boolean;
  rejectedCss?: boolean;
  sourceMap?: boolean | (postcss.SourceMapOptions & {
      to?: string;
  });
  stdin?: boolean;
  stdout?: boolean;
  variables?: boolean;
  safelist?: UserDefinedSafelist;
  blocklist?: StringRegExpArray;
  skippedContentGlobs?: Array<string>;
  dynamicAttributes?: string[];
}

⚠️ Note:

  • The content and css options are not required when using the plugin. All chunks and non-CSS assets in the bundle will automatically be added to the content array as raw values. Likewise, CSS assets will be added to the css array.
  • Custom filenames, globs, and raw values can be passed to the content and css options to include files that are not present in the bundle. These arrays will be concatenated with the content and css arrays retrieved from the bundle.

🤔 Caveats

  • The plugin utilizes the generateBundle Rollup build hook, an output generation hook that is not called during dev. Therefore, PurgeCSS will not modify CSS assets while using Vite's dev server.

  • The result of using the plugin mimics that of calling the PurgeCSS CLI with the output of a Vite build. The plugin seeks to include this operation within the vite build command itself. The following commands provide an example of how this functionality could be implemented using the PurgeCSS CLI.

    # Using the default output directory: "dist/"
    vite build
    purgecss --css 'dist/**/*.css' --content 'dist/**/*.!(css)'

📄 License

MIT License © 2023 Joe Stanley