我正在使用gulp-notify在运行任务时在终端中显示额外信息。目前我只能获得我的高清和文件名的完整路径。我宁愿只显示项目文件夹,因为它更干净。
function copyVideo (done) {
// Locate files
return gulp.src('./src/assets/video/*')
// Copy the files to the dist folder
.pipe(gulp.dest('./dist/assets/video'))
// Notify the files copied in the terminal
.pipe(notify('Copied <%= file.relative %> to <%= file.path %>')),
done();
}
终端视图
我希望终端简单地说 *Copied quick-scope-for-6.mp4 to \dist\assets\video*
我试过 <%= folder.path %> 和 <%= directory.path %>