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
since the file structure of npm3 is flat there is not always a node_modules/brec-base as is reference here: https://github.com/vecnatechnologies/brec-tables/blob/master/index.js#L8-L12
The text was updated successfully, but these errors were encountered:
workaround is to use the brec-base reference. current:
var brecTables = require('brec-tables'); ... includePaths: [brecTables.base.sass, brecTables.tables.sass],
workaround:
var brecTables = require('brec-tables'); var brec = require('brec-base'); ... includePaths: [brec.sass, brecTables.tables.sass],
Sorry, something went wrong.
No branches or pull requests
since the file structure of npm3 is flat there is not always a node_modules/brec-base as is reference here: https://github.com/vecnatechnologies/brec-tables/blob/master/index.js#L8-L12
The text was updated successfully, but these errors were encountered: