Keep watching files imported in sass also when they have errors#134
Keep watching files imported in sass also when they have errors#134endaaman wants to merge 3 commits intowebpack:masterfrom
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.scsswith error such as syntax error likethen Webpack will not recompile the scss files.
And If you build
style.scssimporting_external.scssmissing closing brace firstly and modify_external.scss, Webpack will also not recompile them.This PR fixes them.