It is given: There is a sass file which itself does @import of other partial sass files.
- main.sass
- _partial1.sass
- _partial2.sass
Webpack is configured to build only the main.sass file.
Problem: When launching Webpack in watch mode, for some reason, it does not look at partial sass files, but only looks at changes to the main file. And I want a rebuild to occur when changing one of the partial sass files.
PS As far as I know the watch mode in the Webpack is working on the tree of files that it builds at the time of the first build. But for some reason he does not want to take partial sass files.