Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
[![Build Status](https://travis-ci.org/alfa-bank-dev/bem-loader.svg?branch=master)](https://travis-ci.org/alfa-bank-dev/bem-loader)
The module has several purposes:
It's necessary to set up plugin:
// -----> in webpack.config.js
var loader = require('bem-loader');
var CollectBemAssetsPlugin = loader.CollectBemAssetsPlugin;
module.exports = {
// ...
plugins: [
new CollectBemAssetsPlugin({
done: (data) => { loader.setStylesData(data.css); }, // load data to css-loader
techs: ['css', 'bemhtml'], // or maybe post.css
techExtensions: { // it is possible to define custom extensions for technology
bemhtml: ['bemhtml', 'bemhtml.js']
},
// where to search css
levels: [
'./bem-project/common.blocks',
]
}),
]
};
And use loader:
// -----> somewhere in code
require('bem-loader!./button.css'); // this file have to exist and should be created manually,
// also a name of the file is the name of BEM-block
// ... Webpack should handle everything else
You can also generate stubs using StubsCreatorPlugin:
// -----> in webpack.config.js
var loader = require('bem-loader');
var CollectBemAssetsPlugin = loader.StubsCreatorPlugin;
var stubsDir = './bem-stubs';
module.exports = {
// ...
plugins: [
new StubsCreatorPlugin({
stubsDir,
componentNames: [
'button',
'select',
],
// or if you want to generate stubs for all components in some library
// pathsToComponents: [ 'src/components' ]
}),
]
};
And somethere in your code:
require('./bem-stubs');
// -----> in webpack.config.js
var loader = require('bem-loader');
var CollectBemAssetsPlugin = loader.CollectBemAssetsPlugin;
var generateBemHtml = loader.generateBemHtml;
module.exports = {
plugins: [
new CollectBemAssetsPlugin({
done: function(data) {
if (process.env.STANDALONE) {
// e.g.
var out = bemxjst.vidom.generate(generateBemHtml(data.bemhtml));
fs.writeFileSync(
'./dist/bem-templates.js',
out
);
}
},
techs: ['bemhtml'],
levels: [
'./bem-project/common.blocks'),
]
}),
],
};
FAQs
[![Build Status](https://travis-ci.org/alfa-bank-dev/bem-loader.svg?branch=master)](https://travis-ci.org/alfa-bank-dev/bem-loader)
The npm package bem-loader receives a total of 9 weekly downloads. As such, bem-loader popularity was classified as not popular.
We found that bem-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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
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.