Pass along sass's stats object#808
Conversation
The `stats` object that's returned from the sass compiler contains some interesting info, particularly `includedFiles` which can be used to develop smarter watchers. Related to dlmanning#279, fixed dlmanning#428
|
I named the property |
|
What can we do to get this merged? This would definitely help in creating smarter watchers. |
|
I think if you extended the tests to cover this, it should help to land this. Also, this should probably be documented? /CC @xzyfer |
|
@WraithKenny are you up for this? |
|
Honestly, I've never quite figured out extending tests; I have no idea what I'm doing with regards to that. If anyone wants to adopt this issue/patch, you are more than welcome! |
|
You'd need to rebase the branch first and then add 2 tests for the new property in https://github.com/dlmanning/gulp-sass/blob/master/test/main.js |
|
@XhmikosR @WraithKenny I’ve created new PR with tests |
|
I don't have push rights, so @xzyfer will need to take care of it :) |
The
statsobject that's returned from the sass compiler contains some interesting info, particularlyincludedFileswhich can be used to develop smarter watchers. Related to #279, fixed #428