Reproduces a bug related to webpack cache-loader combination with mini-css-extract
Steps to reproduce on windows:
-
Run npm install on the root folder after downloading all the files
-
Double click on "run webpack.cmd" and let it finish
-
mini-css-extract extracted css as desired to "wwwroot\css" folder and cache-loader created cache in ".cache-loader" folder
-
Delete the extracted css file from "wwwroot\css" folder
-
Run "run webpack.cmd" again
-
This time mini-css-extract did not exctract anything to "wwwroot\css" folder
-
However if you delete the files in ".cache-loader" folder and run "run webpack.cmd" again then mini-css-extract will exctract the css file to "wwwroot\css" folder as desired
NOTE: The "wwwroot\js" folder here is auto-generated so steps will work without it too.