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

nuxt-purgecss

v2.0.0

Published

Drop superfluous CSS! A neat PurgeCSS wrapper for Nuxt.js

Downloads

61,038

Readme

Nuxt PurgeCSS - Drop superfluous CSS!

npm version npm downloads Github Actions CI Codecov License thanks

📖 Release Notes

Features

  • Remove unneeded CSS with ease
  • Sane default settings
  • Built on top of purgecss
  • Nuxt 2 and Nuxt 3 support (Use v1.0.0 for Nuxt2 support for now)
  • Fully tested!

Setup

  1. Add nuxt-purgecss dependency to your project
yarn add --dev nuxt-purgecss # or npm install --save-dev nuxt-purgecss
  1. Add nuxt-purgecss to the modules section of nuxt.config.{js,ts}
export default {
  modules: [
    // Simple usage
    'nuxt-purgecss',

    // With options
    ['nuxt-purgecss', { /* module options */ }],
  ]
}

:warning: If you are using Nuxt 2, please use version 1 of the module.

Options

Defaults

Before diving into the individual attributes, please have a look at the default settings of the module.

The defaults will scan all your .vue, .js and .ts files in the common Nuxt folders, as well as checking your nuxt.config.js (or .ts) for used classes. Furthermore, typical classes (like these needed for transitions, the nuxt link ones or those set when using scoped styles) are whitelisted already.

These settings should be a good foundation for a variety of projects.

Properties in-depth

enabled

  • Type: Boolean
  • Default: !nuxt.options.dev (Disabled during nuxt dev, enabled otherwise)

Enables the module when set to true.

PurgeCSS options

Please read the PurgeCSS docs for information about PurgeCSS-related information.

Examples

Default setup

// nuxt.config.js
export default {
  modules: [
    'nuxt-purgecss',
  ]
}

Customize options

//nuxt.config.js
export default {
  modules: [
    'nuxt-purgecss',
  ],

  purgecss: {
    enabled: true, // Always enable purgecss
    safelist: ['my-class'], // Add my-class token to the safelist (e.g. .my-class)
  }
}

Caveats

  • Don't forget to add paths to pages and components that are not part the common folders (e.g. third party packages)
  • The default generated 500 and 404 pages will be purged by default. Please ensure you have an appropriate error layout
  • Do not use the old >>> or ::v-deep syntax. Instead, go for :deep

Migrating from v1.x

:warning: If you use Nuxt 2, you can't update to v2.x (yet?)

  1. The webpack mode has been removed, as Nuxt 3 supports Vite and webpack. This way, the logic is unified to use the PostCSS plugin of PurgeCSS. There is no mode anymore
  2. The config merging logic of v1 has been removed in favor of using defu. Instead of using functions, write your values as usual and they will be merged.
  3. PurgeCSS has been bumped from v2.x to v5.x - Please check the current config options
  4. Change the module key has been changed to just purgecss.
  5. In addition to enabled, all purgecss configurations can be written directly into the purgecss object.
  6. Eventually, check out the playground of the module and the [current defaults](at the default settings)!

License

MIT License

Copyright (c) Alexander Lichter