-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onSuccess event #279
Comments
I don't think I'd be interested in re-implementing I'd consider attaching the stats info to the file object being passed down the pipe, but it doesn't give much information that Gulp doesn't have already; the only real insight it gives above and beyond what you already get with Gulp is @dlmanning @Keats thoughts on that? |
We like to use the stats to see when it is feasible to use sync vs async compilation. Gulp-sass would just be the wrapper that passes options to node-sass and returns the result as is. Doesn't look like going beyond its intended behavior to me. |
Like I said, I'd consider adding the |
As long as it doesn't interfere with basic usage, I'm ok with it |
I added it before, so I don't suppose I have any objections to adding it again. |
Any updates on this? Need a PR? |
I need onSuccess callback function :( , it helpful when build file !!! Please add callback onSuccess to gulp-sass 3.x |
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
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
In the previous version we had an onSuccess callback function that passed back the resulting css and some stats about the running time of the compilation process.
Can this be made available again in gulp-sass 2.x, or has it also disappeared from node-sass?
The text was updated successfully, but these errors were encountered: