Currently I'm working in project that using gulp, but for some reason in my machine is little bit slow, so the question is can I use grunt in project that use gulp?
can I use grunt in project that use gulp?
Of course you can, but you will duplicate all the preprocessing modules(one for gulp
and one for grunt
) and the build configuration/logic hence adding additional complexity. Yuck.
but for some reason in my machine is little bit slow
gulp
is faster - in theory - since it does it's processing in-memory rather than doing heavy I/O by writing to temp. files which is what grunt
does. The task runner is - most probably - not the cause of your problems.
gulp
/grunt
are just task runners - the modules themselves and the way they are configured are causing the slowdown, not the task runner that runs them.
You are - most likely
Optimise what you have, especially if it's not your project.