-
Notifications
You must be signed in to change notification settings - Fork 467
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
ctx->includedFiles misleading stdin #634
Comments
ACK, it probably shouldn't be on that array. Sorry, I was not really passing On another issue, I have removed |
Thanks @mgreter! 👍 So basically, from the above example, |
Was a bit more complex! Aded some more info to this commit message! |
Awesome! 😄 👍 |
This should be fixed by 9b984fa |
Indeed this is fixed. 😃 👍 |
Consider the following structure:
c:/temp/alpha/index.scss
c:/temp/alpha/foo.scss
c:/temp/alpha/bar.scss
With node-sass, if you do:
It gives:
in stats. The expected behavior is to have
includedFiles: ['c:/temp/alpha/foo.scss', 'c:/temp/alpha/bar.scss']
instead ofstdin
. Since this is data input, otherwise it would also contain reference to index.scss, had it be the file input (which it produces correctly withrequire("./lib/").renderSync({file: 'c:/temp/alpha/index.scss', ..
)./cc @mgreter (I tested with your branch:
api/c-interface
, but still the same issue)The text was updated successfully, but these errors were encountered: