sp00m / gulp-watch-sass

Watches for SASS files modifications, taking @import-ing SASS files into account.
MIT License
6 stars 2 forks source link

Multiple import (@import "deps1", "deps2";) #9

Closed MrFranke closed 6 years ago

MrFranke commented 6 years ago

Hi! At first thanks for awesome plugin, it's saved many times for me. But how about multiple import? It's look like a @import "_variables", "_demo";

sp00m commented 6 years ago

Hi :)

Comma separated imports are not yet handled, but I'm happy to add this feature. I'll try to work on it as soon as possible, I'll keep you posted.

In the mean time, I'm afraid you'll have to split your import into two imports:

@import "_variables";
@import "_demo";
sp00m commented 6 years ago

Implemented in 1.4.0.