-
I sometimes found that some packages do not work, and the reason for not working is that this package does not support Gulp version 4. So, how to know if an NPM package support gulp 4? |
Beta Was this translation helpful? Give feedback.
Answered by
phated
Feb 8, 2021
Replies: 1 comment
-
You can't really. If a plugin was written correctly for gulp 3, then it would work with gulp 4. I assume you are trying to grab things that didn't follow the guidelines. However, gulp 4 was designed in a way that any JS code can be used (not just gulpplugins), so you can easily re-implement some behavior you are looking for. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
phated
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't really. If a plugin was written correctly for gulp 3, then it would work with gulp 4. I assume you are trying to grab things that didn't follow the guidelines.
However, gulp 4 was designed in a way that any JS code can be used (not just gulpplugins), so you can easily re-implement some behavior you are looking for.