-
-
Notifications
You must be signed in to change notification settings - Fork 431
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
Keep watching files imported in sass also when they have errors #134
Keep watching files imported in sass also when they have errors #134
Conversation
There is a |
I'm very sorry. Im just an amateur at coding. |
Wouldn't it be easier to just do |
Do you mean it should be like this?
If it is so, this does'nt work well.
If you build this, fail and comment out |
I now see what you mean. It would definitely be easier with squashed commits :) it is not very hard to do, see https://github.com/ginatrapani/todo.txt-android/wiki/Squash-All-Commits-Related-to-a-Single-Issue-into-a-Single-Commit |
Thx for your effort @endaaman. 👍 The current master branch should fix your problem. However, I've used another approach because your PR adds files as dependency that might not exist anymore. This might be no problem, but I don't think that it's good coding style (no offence). But your PR was inspiration for the current solution 😀. |
I just confirmed this problem is fixed! Thanks ;) |
If you build following codes
and change
_external.scss
with error such as syntax error likethen Webpack will not recompile the scss files.
And If you build
style.scss
importing_external.scss
missing closing brace firstly and modify_external.scss
, Webpack will also not recompile them.This PR fixes them.