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

css-byebye

v4.0.1

Published

Remove the CSS rules that you don't want, with a list of selectors

Downloads

25,919

Readme

CSS Byebye

CSS Byebye is a node module that lets you explicitly remove the CSS rules that you don't want.


js-standard-style Build Status

Description

It's very simple: pass a list of selectors that you want to exclude and it will remove them and the associated rules from your CSS.

I've found some cases where this approach is easier than using more powerful tools like uncss. Use what's best for you and give some feedback :)

CSS Byebye is built with postcss.

Install

npm install postcss css-byebye -D

From v4, postcss is a peer dependency that you need to install yourself.

Usage

CSS Byebye is a CSS post processor and a postcss plugin.
Read the postcss docs to know how to use it for your setup.

Run it as indicated in postcss docs:

postcss(cssbyebye(options)).process(css)
  • css is your stylesheet
  • options is an object that has at least the rulesToRemove property defined.

options

rulesToRemove is an array of strings or regular expressions (selectors).

If you provide a string, it will remove the rule(s) for this exact selector.

Examples

Some CSS:

a {
  font-size: 12px;
}
.hello .h1 {
  background: red;
}
.world {
  color: blue;
}

Using the plugin:

var postcss = require('postcss')
var cssbyebye = require('css-byebye')

var rulesToRemove = ['.hello .h1', '.world']
var options = {rulesToRemove: rulesToRemove, map: false}

// pretend that css var contains the css above
var result = postcss(cssbyebye(options)).process(css)

result will be an object like this:

{
  css: 'a { font-size: 12px; }'
}

If you use the postcss map option, then source map will be added to the result object.

You can mix strings and regular expressions

var rulesToRemove = ['.hello', /.*\.world.*/]

In this case, it would:

  • remove a rule with the exact selector .hello
  • remove any rule that contains the .world class.

Control directives

You can ignore certain rules or certain block of rules to avoid them being removed, even if they match the criteria, adding comments with control directives. These comments will be removed from the final code.

var rulesToRemove = ['.hello .h1', '.world']
input
a {
  font-size: 12px;
}
/* byebye:ignore */
.hello .h1 {
  background: red;
}
.hello .h1 {
  text-align: left;
}
/* byebye:begin:ignore */
.world {
  color: blue;
}
.world {
  border: 1px solid #ccc;
}
/* byebye:end:ignore */
.world {
  background: white;
}
output
a {
  font-size: 12px;
}
.hello .h1 {
  background: red;
}
.world {
  color: blue;
}
.world {
  border: 1px solid #ccc;
}