![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
postcss-var-optimize
Advanced tools
PostCSS plugin to convert css variables that are not redeclared and remove duplicates
PostCSS plugin to optimize css variables usage, it will convert the ones that are declared only once, it will also remove the ones that are redeclared with the same value
a {
border: var(--d);
background: var(--c);
padding: var(--a);
}
:root {
--a: 1%;
--b: calc(var(--a) + 2%);
--c: hsl(20deg, var(--b), var(--a));
--d: var(--c) var(--b) var(--a);
}
.theme {
--b: 3;
}
a {
border: hsl(20deg, var(--b), 1%) var(--b) 1%;
background: hsl(20deg, var(--b), 1%);
padding: 1%;
}
:root {
--b: 3%;
}
.theme {
--b: 3;
}
Check your project for an existing PostCSS config in postcss.config.js
in the project root, or a "postcss"
section in package.json
or postcss
in bundle configuration.
If you already use PostCSS, add the plugin to the plugins list:
module.exports = {
plugins: [
+ require('postcss-var-optimize'),
require('autoprefixer')
]
}
If you do not use PostCSS, add it according to the official docs and add this plugin in the settings like previously indicated.
whitelist
: a regex or a string (or array of those) indicating the name of the variables allowed to be optimized away (do not include the --), if set only the matching ones will be optimizedblacklist
: a regex or a string (or array of those) indicating the name of the variables disallowed to be optimized away (do not include the --)FAQs
PostCSS plugin to convert css variables that are not redeclared and remove duplicates
The npm package postcss-var-optimize receives a total of 0 weekly downloads. As such, postcss-var-optimize popularity was classified as not popular.
We found that postcss-var-optimize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.