@bem/sdk.config — options.pathToConfig
const config = require('@bem/sdk.config');
const mockfs = require('mock-fs');
const { stripIndent } = require('common-tags');
const bemConfig = config({pathToConfig: 'src/configs/.app-rc.json'});
mockfs({
'src': {
'configs': {
'.app-rc.json': stripIndent`
module.exports = {
'root': true,
'levels': {
'common.blocks': {},
'desktop.blocks': {}
},
'modules': {
'bem-tools': {
'plugins': {}
}
}
}`
}
}
});
const conf = await bemConfig.get();
conf;
no comments