Skip to content
New issue

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

importing brec-base from brec-tables does not work in npm3 #3

Open
mandragorn opened this issue Sep 20, 2016 · 1 comment
Open

importing brec-base from brec-tables does not work in npm3 #3

mandragorn opened this issue Sep 20, 2016 · 1 comment

Comments

@mandragorn
Copy link
Contributor

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

@mandragorn
Copy link
Contributor Author

mandragorn commented Sep 20, 2016

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],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant