Gulp dest()基于文件名的动态目标文件夹

时间:2016-06-25 06:54:13

标签: javascript node.js file directory gulp

我想迭代所有src文件,并将每个文件移动到以文件名本身命名的文件夹中,例如。

从:

hello.js
omg.js

为:

hello/
  hello.js
omg/
  omg.js

我有这个任务:

gulp.src('/*.js')
  .pipe(gulp.dest('/' + filename here.......));

我如何实现这一目标?

1 个答案:

答案 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'));
});