playground-feedback
playground-feedback copied to clipboard
SASS folders with _index doesn't work on second nested folder
Saved session: https://play.nativescript.org/?template=play-js&id=OdSigs
- create new project
- Add SASS file
- Create folder with
_index.scss
- Import the folder with
_index.scss
e.g.@import "./home";
- In the
_index.scss
create nested folder with./test/_index.scss
in it - in the
_index.scss
import the nested folder@import "./test";
Saved session: https://play.nativescript.org/?template=play-js&id=OdSigs go tohome/_index.scss
removeindex
from@import "./test/index";
and try to save actual: an error will be thrown:
Error: File to import not found or unreadable: ./test.
Parent style sheet: /sass/home/_index.scss
on line 1 of sass/home/_index.scss
>> @import "./test";
^
expected: to be able to import nested sass folder with _index.scss