Copy source files to new destination and use that destination as new source
Automatically creates needed folders before proceeding. Ability to remove 'prefixes' from path>
var gulpCopy = require('gulp-copy');
return gulp.src(sourceFiles)
.pipe(gulpCopy(outputPath, options));
prefix: integer, defining how many parts of the path (separated by /) should be ignored as they are prefixes
- use nodejs streams to write files (instead of cp command)
- fix callback issues (which probably will fix the too many open files bug)
- initial code