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

postcss-unitlist

v1.0.4

Published

PostCSS plugin that can customize any unit and convert it to the specified unit according to the formula.

Downloads

6

Readme

postcss-unitlist NPM version

PostCSS plugin that can customize any unit and convert it to the specified unit according to the formula. Some of the design of this project is from postcss-pxtorem.

Install

$ npm install postcss-unitlist --save-dev

Options

{
  media: false,
  replace: true,
  propList: ['*'],
  unitList: [
    {
      math: '$word / 16',
      word: 'px',
      unit: 'rem',
    },
    {
      math: '$word / 100',
      word: 'rpx',
      unit: 'rem',
    },
    {
      math: '100 / 750 * $word',
      word: 'vpx',
      unit: 'vw',
    }
  ]
}
  • media (Boolean) Allows conversion of customize units in media queries. Default: false
  • replace (Boolean) Replace rules that contain customize units instead of adding fallbacks. Default: true
  • propList (Array) Properties that allow conversion to customize units. Default: ['*']
    • Values need to be exact matches.
    • Use wildcard * to enable all properties. Example: ['*']
    • Use * at the start or end of a word. (['*position*'] will match background-position-y)
    • Use ! to not match a property. Example: ['*', '!letter-spacing']
    • Combine the "not" prefix with the other prefixes. Example: ['*', '!font*']
  • unitList (Array) List of matching rules for customize units. Default: []. Plugin will not work by default.
  • exclude (String, Regexp, Function) The file path to ignore and leave as the original unit. Default: /node_modules/i
    • If value is string, it checks to see if file path contains the string.
      • 'exclude' will match \project\postcss-pxtorem\exclude\path
    • If value is regexp, it checks to see if file path matches the regexp.
      • /exclude/i will match \project\postcss-pxtorem\exclude\path
    • If value is function, you can use exclude function to return a true and the file will be ignored.
      • the callback will pass the file path as a parameter, it should returns a Boolean result.
      • function (file) { return file.indexOf('exclude') !== -1; }

Input/Output

// Input

.rule {
  width: 750rpx;
  height: 750vpx;
  font-size: 0rpx;
  border-radius: 0px;
}

@media (min-width: 1024px) { 
  .rule {
    font-size: 24rpx;
  } 
}

// Output

.rule {
  width: 7.5rem;
  height: 100vw;
  font-size: 0;
  border-radius: 0;
}

@media (min-width: 1024px) { 
  .rule {
    font-size: 0.24rem;
  } 
}