-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Remove gulp-shell from blacklist #1353
Comments
From the gulp-shell docs:
vs this from the gulp-exec docs:
That alone seems reason to prefer gulp-exec to gulp-shell: gulp-shell are promoting a massive anti-pattern. The entire reason gulp-shell was created is so it could be used in a way that shouldn't be in a gulp plugin: sun-zheng-an/gulp-shell#1 (comment) |
Yeah, gulp-shell is promoting huge anti-patterns. I've opened an issue about this and it was closed with no resolution. |
The issue, for reference: sun-zheng-an/gulp-shell#55 Possibly updating the blacklist reason would be a good idea? "promotes anti-patterns, use gulp-exec or child_process"? |
Yeah, @callumacrae. Let's get that in a different PR |
As discussed over here: gulpjs/gulp#1353
I'm using gulp-shell because no matter how hard i try, I am was unable to finish a gulp task (i.e. return out stream) when successfully executing a shell command through Below is sample code I am referring to above:
Would you know how i could finish the above task? It would be great, just so that i do not have to rely on gulp-shell?. |
@Sayvai Call |
@TrySound - Your solution above worked. Genius! Thank you. |
Please remove
gulp-shell
from the blacklist.from blacklist.json
The reason stated is not true, as
gulp-exec
lacks feature parity withgulp-shell
.There are more forks and stars for
gulp-shell
on github vs. those numbers forgulp-exec
.To me,
gulp-shell
is also much more intuitive thangulp-exec
.The text was updated successfully, but these errors were encountered: