How to run gulp task in Visual Studio code?

I opened my workspace in Visual Studio Code and I have gulp tasks installed. Now I run gulp tasks in CMD windows. Do I perform gulp tasks directly from VS code?

Say I have gulp tasks for

  • Test
  • Serve
  • Build
+4
source share
1 answer

Typically, the VS code automatically defines the gulp task.

As you can see in this doc

By pressing F1 , then type Run task , and then Enter, it will display all available tasks. By selecting one and pressing Enter, you are Task.

hope this helps

+5
source

All Articles