Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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
like image 583
Purushoth Avatar asked Apr 30 '16 18:04

Purushoth


1 Answers

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

like image 197
rick Avatar answered Oct 20 '22 15:10

rick