0% found this document useful (0 votes)
21 views2 pages

Gulp Q&A

The document provides examples and information about various task runners and build tools like Gulp, Grunt, Broccoli, Brunch and Webpack. It then discusses key concepts of Gulp like default tasks, streams, plugins for tasks like minification, concatenation, compression and more.

Uploaded by

Shailesh Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views2 pages

Gulp Q&A

The document provides examples and information about various task runners and build tools like Gulp, Grunt, Broccoli, Brunch and Webpack. It then discusses key concepts of Gulp like default tasks, streams, plugins for tasks like minification, concatenation, compression and more.

Uploaded by

Shailesh Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

examples of Task runners -

Gulp.js
Grunt.js
Broccoli.js
Brunch
Webpack

***********************************************************************************
***********************************
The default task representation in gulp will be like _________.
gulp.task('default',function(){ });

Streams which play vital role in gulp, has its origin from __________.
Unix

Which Streams provide ability to both read and write?


Transform

How many types of Streams are available?


5

While installing gulp with $npm install gulp --save-dev, what does --save-dev
represents?
Installs Gulp as a development dependency and package.json updated

Between Grunt and Gulp, which is relatively fast?


Gulp

How does installing Gulp globally help?


Helps to run gulp command from any project folder

Before installation of Gulp, installation of _____________ acts as pre-requisite.


Node.js

Streams are Asynchronous. Is this True or False?


true

Streams are represented as _________.


.pipe()

While installing gulp, the first installation step would be ________.


$npm install gulp g
***********************************************************************************
***********************************
Which package helps in minifying the CSS?
gulp-minify-css

Which helps with sequencing the tasks one bye one?


.pipe

Which among the following helps to compile into .CSS format?


both

Which plugin notifies whenever there is any change in file?


gulp-watch

Compression of images could be easily achieved using which gulp plug-in?


gulp-imagemin
gulp.src in gulpfile.js refers to ______.
Source location of files to be acted upon

Which plugin helps in task dependencies


no plugin

gulp-concat helps with __________


Concatenation of files in given location

The main objective of compressing (images / CSS / JavaScript) is to help with


____________.
All
***********************************************************************************
***********************************
Organizing the gulp plug-ins can be easily achieved through
gulp-load-plugins

to convert .svg icons into fonts, gulp provides ________ plug-in.


gulp-iconfont

In-memory caching is enabled with the help of which gulp plug-in?


gulp-cached

You might also like