PostCSS @astrouxds/postcss-custom-property-token-fallback
.foo {
color: var(--color-text-default);
}
.foo {
color: var(--color-text-default, #ffffff);
}
This plugin will search through your CSS and update all custom-properties to have their fallback value included. This fallback value comes from the given index file, which should be an object with all CSS custom property declarations. For example,
{
'foo': '#123456',
'bar': '10px',
'fi-fo': '5px',
}
This plugin also works for instances where multiple CSS custom props are used. For example,
padding: var(--spacing-1) var(--spacing-2);
margin: calc(var(--spacing-1) + var(--spacing-2));
becomes
padding: var(--spacing-1, 4px) var(--spacing-2, 8px);
margin: calc(var(--spacing-1, 4px) + var(--spacing-2. 8px));
If a custom property isn't in the index, the custom property will reamin unchanged. If a custom prop is being used with a fallback already, and that fallback doesn't match the value given in the index file, then the custom property value will be overwritten with the value from the index file. For example, if the current CSS looks like:
color: var(--my-color, #ffffff);
and the index file also has a my-color
custom prop with a different value, such as #000000
, then the output would be:
color: var(--my-color, #000000);
Step 1: Install plugin:
npm install --save-dev postcss @astrouxds/postcss-custom-property-token-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('@astrouxds/postcss-custom-property-token-fallback({index: yourIndexFile })'),
require('autoprefixer')
]
}