我想遍历所有src文件,并移动以文件名命名的文件夹中的每个文件,例如
来自:hello.js
omg.js
:
hello/
hello.js
omg/
omg.js
我有这个任务:
gulp.src('/*.js')
.pipe(gulp.dest('/' + filename here.......));
我如何实现这一点?
gulp.task('pack', function () {
return gulp.src('temp/**/*.js')
.pipe(uglify())
.pipe(rename(function (path) {
path.dirname += "/"+path.basename;
path.extname = ".min.js";
}))
.pipe(gulp.dest('./build'));
});