We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bem-deps uses bem-walk inside gather function https://github.com/bem-sdk/bem-deps/blob/master/lib/gather.js
But now there is no way to provide levelsMap to bem-walk.
const walker = walk(config.levels, { defaults: config.options });
This line should look like
const walker = walk(config.levels, { levels: config.options.levels, defaults: config.options });
The text was updated successfully, but these errors were encountered:
Nice catch! Would be great if you provide a PR ;-)
Sorry, something went wrong.
Add individual levels config (thru bem-walk)
d101ca0
According to bem-sdk-archive#91
fix(gather): provide individual levels config to bem-walk
4635e89
According to #91
ac313a0
qfox
No branches or pull requests
bem-deps uses bem-walk inside gather function https://github.com/bem-sdk/bem-deps/blob/master/lib/gather.js
But now there is no way to provide levelsMap to bem-walk.
This line should look like
The text was updated successfully, but these errors were encountered: