
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
jsvars-loader
Advanced tools
webpack loader for postcss for sharing style variables in both JS and CSS. Depends on postcss-simple-vars.
This loader allows you to define CSS styles in a common place, and then use those styles in both your JavaScript and your CSS.
Install this webpack loader:
npm install jsvars-loader --save
Configure webpack to use this loader first thing (before postcss) when loading CSS files:
module: {
loaders: [
{ test: /\.css$/, loader: "postcss-loader!jsvars-loader" }
]
}
Make sure you've got the postcss-simple-vars plugin enabled in your webpack config:
postcss: [
require('postcss-simple-vars')
]
Create a JS file with some styles you'd like to reuse:
module.exports = {
layout: {
list: {
width: '330',
spacing: '10'
}
},
color: {
list: {
background: 'rgba(255,255,255,1)'
}
}
};
From the JS side of things you can simply require
this file and use it.
From your CSS you "import" these variables by calling jsvars(<path to your vars file>)
. You can then use these variables in your CSS with the $(<variable name>)
syntax:
jsvars(common/styles.js)
.list{
width: $(layout-list-width)px;
background: $(color-list-background);
}
Deeply nested style properties are accessed by using dashes e.g. layout-list-width
.
License: MIT
FAQs
webpack loader for sharing style variables in both JS and CSS
The npm package jsvars-loader receives a total of 5 weekly downloads. As such, jsvars-loader popularity was classified as not popular.
We found that jsvars-loader 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.