0 votes
in JAVA by
How do you setup/configure gulp?

Grunt js Interview questions

1 Answer

0 votes
by

Once installed, you need to add 2 files to setup gulp.

1. package.json: This file is used by npm to store metadata for projects published as npm modules. So basically, there will be list of all gulp plugins, along with gulp which your project is using.

2. Gulpfile.js: This is where magic happens. This is the place where we define what automation needs to be done and when you want that to happen.

Related questions

0 votes
asked Feb 12, 2023 in GulpJS by sharadyadav1986
0 votes
asked Feb 15, 2020 in JAVA by rahuljain1
...