-
Notifications
You must be signed in to change notification settings - Fork 464
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
updating included files even in case of compilation error #638
Comments
I guess what you actually want is to query that list before the compile step is taking place. This way you could retrieve that information without triggering any compiling issues. Am I right? Be aware that this could still fail, but only if there are problems resolving the imports etc. and not with compilation issues. @akhleung Can you confirm that imports are fully resolved before compilation? Or is there some way to add more includes during the compilation phase? If not I would propose the fallowing:
|
Added a commit to the C API refactoring PR! |
yes, ability to query the list before compile step will solve our problem at webpack-contrib/sass-loader#29 @mgreter +1 for your two step proposal. |
This should be fixed by 2a57715 |
👍 |
As of now, included files are updated only if compilation is successful and it is empty if compilation fails.
Is is possible to update included files even in case of compilation error.
This feature is required in watcher tools, where compilation temporarily enters error state while typing code.
The text was updated successfully, but these errors were encountered: