我想迭代所有src文件,并将每个文件移动到以文件名本身命名的文件夹中,例如。
从:
hello.js
omg.js
为:
hello/
hello.js
omg/
omg.js
我有这个任务:
gulp.src('/*.js')
.pipe(gulp.dest('/' + filename here.......));
我如何实现这一目标?
答案 0 :(得分:2)
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'));
});