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-inline-variables

v1.1.0

Published

PostCSS plugin for Sass-like variables with inline defaults

Downloads

8

Readme

postcss-inline-variables Build Status Coverage Status

PostCSS plugin for Sass-like variables with inline defaults

Installation

npm install --save-dev postcss-inline-variables

Usage

Write defaults inline or define them at the top of your file:

$background-color: red !default; /* sass-like syntax, tells variable it may be overwritten */

.title {
  background-color: $background-color;
  color: $color or green; /* inline default */
  flex-flow: [$direction or column] [$wrap or wrap]; /* use [brackets] if there's more than one variable in a rule */
}

Then define your variables in an object, and pass it in when compiling your styles:

const inlineVariables = require('postcss-inline-variables'),
  myVariables = {
    'background-color': '#fff',
    color: '#000'
    // direction and wrap aren't defined, so the defaults will be used
  };

postcss([inlineVariables(myVariables)])
  .process(css)
  .then((result) => {
    console.log(result.css); // → styles that use the variables!
  })
  .catch((e) => {
    console.log(e.message); // → throws error with the variable name if it has no default value!
  });

The variables you define will be applied to the styles, which will fall back to using their defaults!

.title {
  background-color: #fff;
  color: #000;
  flex-flow: column wrap;
}

Note: It might be useful to use postcss-get-sass-variables to extract them from other css files, if you organize your styleguides purely in css.

Options

requirePrefix

By default, this will error if a variable fallback isn't defined (similar to SASS). If you want to be even more strict, you can make it error if the variable isn't prefixed with the file name / folder name it's in. This is useful when building component-based style systems.

For example, imagine you have a components/foo.css (that styles the foo component):

.title {
  background-color: $color or #fff; /* will error */
  color: $foo-color or #000; /* will pass */
}

The $color variable will throw an error if you set requirePrefix: 'file':

postcss([inlineVariables(myVariables, { requirePrefix: 'file' })])
  .process(css)
  .catch((e) => {
    console.log(e.message); // → 'No prefix for $color in components/foo.css! Should it be $foo-color?'
  });

The same behavior can be used at the folder level, e.g. components/foo/styles.css:

postcss([inlineVariables(myVariables, { requirePrefix: 'folder' })])
  .process(css)
  .catch((e) => {
    console.log(e.message); // → 'No prefix for $color in components/foo/styles.css! Should it be $foo-color?'
  });

These errors will suggest variable names, to make it easier to diagnose issues with your styles.

requireDefault

Besides the inline $variable or default definitions, you can use SASS's !default syntax to write hoisted variable definitions in your files:

$color: #000 !default;

.title {
  color: $color; /* will be #000 if $color isn't passed in */
}

This is handy for large css files, but allows you to overwrite the passed-in variables if you don't specify !default, e.g. if you simply write $color: #000. This maintains the intuitive behavior from SASS, but might be a gotcha for developers who aren't used to it. If you don't want to allow this, use the requireDefault option.

For example, $color: #000 will throw an error if you set requireDefault: 'flag':

postcss([inlineVariables(myVariables, { requireDefault: 'flag' })])
  .process(css)
  .catch((e) => {
    console.log(e.message); // → 'No !default flag set for $color!'
  });

This can also be used to disable hoisted variable definitions entirely, requiring developers to write all of their variables inline in the form of $var or value:

postcss([inlineVariables(myVariables, { requireDefault: 'inline' })])
  .process(css)
  .catch((e) => {
    console.log(e.message); // → 'Illegal hoisted variable $color! Use "$color or value"'
  });

Alternatively, you can specify the exact opposite behavior, requiring all variables to be hoisted (and preventing all inline defaults):

postcss([inlineVariables(myVariables, { requireDefault: 'hoisted' })])
  .process(css)
  .catch((e) => {
    console.log(e.message); // → 'Illegal inline variable $color! Use "$color: value !default"'
  });

Contributing

This plugin is in a stable state, and doesn't get updates frequently. If you'd like to add a feature or fix a bug, please make a pull request!

You can install dependencies with npm install once you've cloned the repo, and run tests with npm test.