postcss-cssvar-fallback

1.0.0-beta.2 • Public • Published

postcss-cssvar-fallback

PostCSS plugin css.

.foo {
  color: var(--primary-color);
}
.foo {
  color: var(--primary-color, red);
}

Usage

Step 1: Install plugin:

npm install --save-dev postcss postcss-cssvar-fallback

Step 2: Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

Step 3: Add the plugin to plugins list:

module.exports = {
  plugins: [
+   (require('postcss-cssvar-fallback'), {
+      themePath: path.join(__dirname, '../node_modules/@kdocs/kdesign-theme/default.css')
+   }),
    require('autoprefixer')
  ]
}

Step 4: Ignore your theme file:

eg:

webpack

externals: {
+  '@kdocs/kdesign-theme/default.css': '""'
}

Package Sidebar

Install

npm i postcss-cssvar-fallback

Weekly Downloads

0

Version

1.0.0-beta.2

License

MIT

Unpacked Size

19.9 kB

Total Files

6

Last publish

Collaborators

  • yy950812