| 1. |
What Is Gulp.dest And How To Use It? |
|
Answer» It POINTS to the folder where file needs to written. This returns a writable stream and file objects PIPED to this are SAVED to the file system. Folders that don’t exist will be created. 1 gulp.DEST(path[, options]) ? It has 2 arguments path and an optional Option.The path (output folder) to write files to. Or a function that returns it. In short src and dest is like copy and paste function. It points to the folder where file needs to written. This returns a writable stream and file objects piped to this are saved to the file system. Folders that don’t exist will be created. 1 gulp.dest(path[, options]) ? It has 2 arguments path and an optional Option.The path (output folder) to write files to. Or a function that returns it. In short src and dest is like copy and paste function. |
|