Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
postcss-constants
Advanced tools
PostCSS plugin to process imported constants from a file.
constants.js
module.exports = {
colors: {
primary: '#8EE7D3',
},
};
input
~colors: "./constants.js";
.foo {
color: ~colors.primary;
}
output
.foo {
color: #8EE7D3;
}
constants.js
module.exports = {
borders: {
weight: '2px',
style: 'solid',
},
};
input
~borders: "./constants.js";
.foo {
border: ~borders.weight ~borders.style black;
}
output
.foo {
border: 2px solid black;
}
constants.js
module.exports = {
theme: {
orange: {
color: 'orange',
icons: {
color: 'green',
},
},
},
};
input
~theme: "./constants.js";
.icon {
background: ~theme.orange.icons.color;
}
constants.js
module.exports = {
queries: {
maxWidth: '200px',
},
}
input
~queries: "./constants.js";
@media (max-width: ~queries.maxWidth) {
color: blue;
}
output
@media (max-width: 200px) {
color: blue;
}
postcss([ require('postcss-constants') ])
You can pass a default set of constants (that can be overriden), if you want to update default constants in webpack hot reload:
postcss([
constants({
defaults: {
colors: {
primary: 'blue',
},
}
})
])
Call postcss-constants
before any plugins that will compute values stored in constants. See PostCSS docs for examples for your environment.
0.2.0
baseDir
is an option that allows paths to be found in another directoryFAQs
PostCSS plugin to process imported constants from a file.
The npm package postcss-constants receives a total of 154 weekly downloads. As such, postcss-constants popularity was classified as not popular.
We found that postcss-constants 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.