Not the answer, but applicable to this question’s appearance in search results.
To copy files/folders in gulp
gulp.task('copy', () => gulp
.src('index.js')
.pipe(gulp.dest('dist'))
);
Not the answer, but applicable to this question’s appearance in search results.
To copy files/folders in gulp
gulp.task('copy', () => gulp
.src('index.js')
.pipe(gulp.dest('dist'))
);