Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Windows-unfriendly theme.scss loader rule
The webpack module loader rule for theme.scss files contained a unix-style path separator that resulted in theme.scss not being matched with the ExtractTextPlugin and processed by SASS. Instead, it was being treated as a JS import, and our stub `core-blocks/separator/theme.scss` file happens to also parse as JS. This meant there was no build error but also no `build/core-blocks/theme.css` file. This commit simply removes the offending separator because it is unnecessary.
- Loading branch information