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
I'm using Nathan Walker's angular2-seed-advanced for our project and we ran into a problem with nativescript-dev-sass.
angular2-seed-advanced
nativescript-dev-sass
angular2-seed-advanced shares code between web, desktop and {N} and does so by symlinking folders. This breaks nativescript-dev-sass because of glob, which by default doesn't crawl over symlinks. It can easily be fixed by adding the option { follow: true } here: https://github.com/toddanglin/nativescript-dev-sass/blob/master/lib/converter.js#L19
glob
{ follow: true }
But I don't know if it's a good idea in the long run.
The text was updated successfully, but these errors were encountered:
f3d0f2f
Merge pull request #13 from m-abs/issue-11
2fa3100
fix: #11 scss-file under a symlink are not transpiled into css
No branches or pull requests
I'm using Nathan Walker's
angular2-seed-advanced
for our project and we ran into a problem withnativescript-dev-sass
.angular2-seed-advanced
shares code between web, desktop and {N} and does so by symlinking folders.This breaks
nativescript-dev-sass
because ofglob
, which by default doesn't crawl over symlinks.It can easily be fixed by adding the option
{ follow: true }
here: https://github.com/toddanglin/nativescript-dev-sass/blob/master/lib/converter.js#L19But I don't know if it's a good idea in the long run.
The text was updated successfully, but these errors were encountered: