Workflow Automation With Gulp
Workflow Automation With Gulp
No
1
2
3
4
5
6
7
8
10
11
12
13
14
15
16
17
18
19
20
21
22
24
25
26
27
28
30
31
32
33
34
35
While installing gulp with $npm install gulp --save-dev, what does --save-dev represents?
Which plugin notifies whenever there is any change in file?
Which command in the CLI will trigger the 'default` task?
Which task would be called in gulp, by default?
Compression of images could be easily achieved using which gulp plug-in?
Which plugin helps in task dependencies?
The main objective of compressing (images / CSS / JavaScript) is to help with ____________.
Which helps with sequencing the tasks one bye one?
Which package helps in minifying the CSS?
gulp.src in gulpfile.js refers to ______.
gulp-concat helps with __________
In-memory caching is enabled with the help of which gulp plug-in?
To convert .svg icons into fonts, gulp provides ________ plug-in
Which streams help to pass data to writable /duplex / transform streams?
The default task / plug-ins in gulp are mentioned in this ______ file.
Which plug-in has optimizers and compressors?
How to check if gulp has been installed successfully?
While installing the gulp using the syntax npm install gulp --save-dev, ________section of _________ is updated.
Which among the following helps to compile into .CSS format?
The default task representation in gulp will be like _________.
Organizing the gulp plug-ins can be easily achieved through
The different kinds of Streams include ______________.
Streams give higher flow control. Is this True or False?