我目前正在重构一个项目,之前所有缩小的JavaScript文件都放在特定的目录中。现在我需要将缩小版本保留在与源文件相同的目录中。
目前我这样做:
gulp.task( 'scripts', function () {
return gulp.src( source_paths.scripts )
.pipe( uglify( {
preserveComments: 'false'
} ) )
.pipe( rename( {suffix: ".min"} ) )
.pipe( gulp.dest( './build/js' ) )
.pipe( notify( {
message: 'Scripts task complete!',
onLast : true
} ) );
} );
这可以工作,除了它移动我的文件。我尝试将gulp.dest()
的使用更改为.pipe( gulp.dest( '' ) )
以及删除该行。在这两种情况下都没有写过缩小的JS,我很伤心。
如何将所有文件写入与源文件相同的目录?
答案 0 :(得分:6)
您目前正在写信build/js
,当然,删除dest
会导致没有写入文件。如评论所示,您可以在file.base
来电中的匿名函数中致电dest
。请注意以下内容......
// fixed spacing madness
gulp.task('scripts', function () {
return gulp.src(source_paths.scripts)
.pipe(uglify({
preserveComments: 'false'
})
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest(function(file) {
return file.base;
}))
.pipe(notify({
message: 'Scripts task complete!',
onLast : true
}));
});
答案 1 :(得分:0)
USE“./”...当前位置
gulp.task('task_name', function () {
return gulp.src(path\*.js) // or other selection
.pipe(uglify())
.pipe(rename({suffix: '.min'})).pipe(gulp.dest("./"));
});