+1 vote
in JAVA by
While installing gulp with $npm install gulp --save-dev, what does --save-dev represent?

Ensures CLI installation

Triggers dependency between project and CLI

Missed out components of global installation will be taken here

Installs gulp as a development dependency and updates package.json

1 Answer

0 votes
by
Installs gulp as a development dependency and updates package.json
...