Purushoth
Purushoth

Reputation: 2793

How to run gulp task in visual studio code?

I have opened my work-space in Visual Studio Code and I have setup gulp tasks. Now I am running gulp tasks in CMD windows. Have do I run gulp tasks directly from VS Code?

Say I have gulp tasks for

  1. Test
  2. Serve
  3. Build

Upvotes: 8

Views: 14824

Answers (1)

rick
rick

Reputation: 1895

Normally VS code auto detect gulp task.

As you can see in this doc

Pressing F1 and then typing Run Task followed by Enter will list all available tasks. Selecting one and pressing Enter will execute the task.

hope this helps

Upvotes: 9

Related Questions