Hi,
I have multiple scss that imports from bower_components and the files are located all over my directory structure. Here's a sample hieararchy:
├── package.json
└── public
├── bower_components
└── scripts
├── cards
│ └── widgets
│ └── css
│ ├── a.scss
│ └── b.scss
└── common
└── css
├── c.scss
└── d.scss
If I have import on a.scss and on c.scss, the grunt task won't finish (i.e. import in two different level won't work). If I have import in a.scss and b.scss or c.scss or d.scss (i.e. same level) it's okay, it imports with no issues. I did an strace and it looks like it is waiting (keeps calling epoll_wait), don't know if it's waiting on write or read, can't trace it from there.
I am not sure if this is because of the importer or the node-sass but I figure I start here. Let me know if you can think of anything that might cause this issue.
Thanks in advance and happy new year.
Alex
Hi,
I have multiple scss that imports from bower_components and the files are located all over my directory structure. Here's a sample hieararchy:
If I have import on a.scss and on c.scss, the grunt task won't finish (i.e. import in two different level won't work). If I have import in a.scss and b.scss or c.scss or d.scss (i.e. same level) it's okay, it imports with no issues. I did an strace and it looks like it is waiting (keeps calling epoll_wait), don't know if it's waiting on write or read, can't trace it from there.
I am not sure if this is because of the importer or the node-sass but I figure I start here. Let me know if you can think of anything that might cause this issue.
Thanks in advance and happy new year.
Alex