nickdodd79 / vscode-gulptasks

A gulp task visualization and execution extension for Visual Studio Code
MIT License
8 stars 6 forks source link

Gulp Tasks

Allows you to visualize and execute gulp tasks found in your workspaces.

NOTE: If you are using a multi-root workspace and have a custom filters array in your settings, you may need to add a glob prefix (**) to node_modules and bower_components to avoid errors. This was fixed in v1.1.3 and the below example shows the required values.

Preview

Gulp Tasks Preview

Settings

The following settings can be used to control the extension via File > Preferences > Settings:

Example:

{
  "gulptasks.pattern": "**/gulpfile*.js",
  "gulptasks.filters": [
    "!**/node_modules/**",
    "!**/bower_components/**"
  ],
  "gulptasks.args": [],
  "gulptasks.output.show": "Task Starts"
  "gulptasks.notifications.executed": true,
  "gulptasks.notifications.terminated": true,
  "gulptasks.notifications.restarted": true
}