
Research
/Security News
Bitwarden CLI Compromised in Ongoing Checkmarx Supply Chain Campaign
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.
stylus-resources-loader
Advanced tools
Stylus resources loader for Webpack, inspired by sass-resources-loader.
A common request is to be able to load a settings file in each component without the need to explicity import it each time, e.g. to use stylus variables globally throughout all components. To accomplish this:
npm install stylus-resources-loader --save-dev
Then add the following webpack rule:
module: {
rules: [
// Apply loader
{
test: /\.(styl|stylus)$/,
use: [
'style-loader',
'css-loader',
'postcss-loader',
'stylus-loader',
{
loader: 'stylus-resources-loader',
options: {
// Provide path to the file with resources
resources: './path/to/resources.styl',
// Or array of paths
resources: [
'./path/to/vars.styl',
'./path/to/mixins.styl'
]
}
}
]
}
]
},
As an example, if you are using vuejs-templates/webpack, modify build/util.js like so:
stylus: generateLoaders('stylus').concat({
loader: 'stylus-resources-loader',
options: {
resources: './path/to/resources.styl'
}
}),
FAQs
Stylus resources loader for Webpack
We found that stylus-resources-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.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.

Product
Stay on top of alert changes with filtered subscriptions, batched summaries, and notification routing built for triage.