Update how SCSS files are injected
tigerclaw-az opened this issue · 0 comments
tigerclaw-az commented
The transform for injecting SCSS files should be updated to fix the following:
- Remove the
.scss
or.sass
extension, e.g.filename.scss
would result in@import "filename";
- Support for SCSS partials by removing the leading
_
, e.g.a/b/c/_partial.scss
would result in@import "a/b/c/partial"