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-use-plus

v0.0.3

Published

Enable PostCSS plugins directly in your stylesheet.

Downloads

7

Readme

postcss-use-plus Build Status

Enable PostCSS plugins directly in your stylesheet.

@use postcss-preset-env(stage: 0, browsers: "last 2 versions");

h1 {
  & a {
    color: red
  }
}

Install

With npm do:

npm install postcss-use-plus --save

Example

Options may be passed into plugins as a JSON object, an array, a hash map, or as declarations. Hash maps will follow the format of option: value, option2: value2.

Input

Standard syntax

With postcss-discard-comments:

@use postcss-discard-comments(removeAll: true);
/*! test */
h1 {
    color: red
}

Alternative syntax

You may also use configuration blocks that are more CSS-like. Note that root array options cannot be parsed by this method.

@use postcss-discard-comments {
    removeAll: true
}

Output

h1 {
    color: red
}

API

use(options)

options

modules

Type: array|string Required option.

The modules option specifies a list of allowable PostCSS Plugins, expressed as a String, Array, or RegExp. By default, all plugins are disabled in order to prevent malicious usage in browser environments.

use({
  // allow plugins starting with autoprefixer, postcss, precss, and cssnano
  modules: [
    /^autoprefixer/,
    /^postcss/,
    /^precss/,
    /^cssnano/
  ]
})
use({
  // allow autoprefixer, postcss-preset-env, and postcss-flexbugs-fixes
  modules: [ 'autoprefixer', 'postcss-preset-env', 'postcss-flexbugs-fixes' ]
})

Setting the option to "*" will allow PostCSS Use to require any plugins. This is not recommended for environments where you may be accepting arbitrary user input; use at your own risk.

resolveFromFile

Type: boolean (default: false)

The resolveFromFile option specifies whether plugins should be resolved relative to the file that referenced them. This may be used to enable the usage of different versions of the same plugin. By default, it is disabled.

use({
  resolveFromFile: true
})
options

Type: object (default: {})

The options option specifies individual options for specific plugins by plugin name.

use({
  options: {
    'postcss-preset-env': {
      stage: 0,
      browsers: 'last two versions'
    }
  }
})
ruleName

Type: string (default: use)

The ruleName option is used to customize the "use" command name, which is the name after @.

use({
  ruleName: 'custom-use'
})

Usage

See the PostCSS documentation for examples for your environment.

Contributors

Thanks goes to these wonderful people (emoji key):

| Ben Briggs💻 📖 👀 ⚠️ | Jonathan Neal💻 ⚠️ | 一丝💻 | Maxime Thirouin📖 | Bogdan Chadkin📖 👀 | Espen Hovlandsdal💻 ⚠️ | Andrey Sitnik👀 | | :---: | :---: | :---: | :---: | :---: | :---: | :---: |

This project follows the all-contributors specification. Contributions of any kind welcome!

License

MIT © Ben Briggs