
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
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
The npm package stylus-resources-loader receives a total of 12 weekly downloads. As such, stylus-resources-loader popularity was classified as not popular.
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.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.