Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@stylin/msa-loader
Advanced tools
The primary webpack loader for generation Mapping Style Annotations.
npm install --save-dev @stylin/msa-loader
You need to install style-loader or mini-css-extract-plugin:
npm install --save-dev style-loader
// or
npm install --save-dev mini-css-extract-plugin
Don't install both, use one of them.
npm install --save-dev sass-loader
In webpack configuration file, place @stylin/msa-loader
after style-loader
or mini-css-extract-plugin
in modules/rules.
module.exports = {
module: {
rules: [{
test: /\.scss$/i,
use: [
`@stylin/ts-loader`, // only if you use TypeScript
`@stylin/msa-loader`,
`style-loader`,
{loader: `css-loader`, options: {modules: true}},
`sass-loader`, // optional
],
}],
}
}
MiniCssExtractPlugin
:const MiniCssExtractPlugin = require(`mini-css-extract-plugin`)
module.exports = {
plugins: [new MiniCssExtractPlugin()],
...
module: {
rules: [{
test: /\.scss$/i,
use: [
`@stylin/ts-loader`, // only if you use TypeScript
`@stylin/msa-loader`,
{
loader: MiniCssExtractPlugin.loader,
options: {publicPath: `folder-where-css-files-will-be-stored`}
},
{loader: `css-loader`, options: {modules: true}},
`sass-loader`, // optional
],
}],
}
}
Set modules
to true in options of css-loader:
{loader: 'css-loader', options: {modules: true}}
FAQs
Stylin loader module for webpack
We found that @stylin/msa-loader demonstrated a healthy version release cadence and project activity because the last version was released less than 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.