Gulp reference
9 May 2022 (Updated 9 May 2022)
What is Gulp?
Gulp is a JavaScript automation tool that lets you automate slow, repetitive tasks. You can write custom tasks using an expressive JavaScript syntax or utilize the rich ecosystem of community plugins.
Setup Gulp
Install the gulp
CLI tool:
cd
into your project and install Gulp as a dev dependency:
Example task
Create a gulpfile.js
file at the root of your project:
Run:
Run tasks
Run default exported function from gulpfile:
Run specific function from gulpfile:
List tasks
Print the task dependency tree for the loaded gulpfile.
Print a plaintext list of tasks for the loaded gulpfile.
Run tasks in sequence
Run tasks in parallel
Combine series and parallel tasks
Signal completion of task
You can resolve a Promise to signal that a task has completed:
Or, invoke the callback (passed to all tasks) without no arguments:
Execute tasks on file change
Tagged:
JavaScript tooling
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment