While installing the gulp using the syntax npm install gulp --save-dev, ________section of _________ is updated
Answers
Answered by
4
The answers are devDependencies and package.json.
When installing the gulp using the syntax npm install gulp –sev-dev, devDependencies section of package.json is updated.
When the command is executed, Gulp gets installed as a development dependency. It is intended for local use and gets added to your project. The package.json file gets created when a new Gulp file is created by running the npm init instance.
Similar questions