0 votes
in JAVA by
How do you execute gulp task?

1 Answer

0 votes
by
You can execute the gulp task from command line. To execute jshint task

gulp jshint

And to execute default task,

gulp

or

gulp default
...