2015-01-27 7 views
0

У меня есть поток gulp.src с файлами:Как переименовать cwd, base и path в потоке gulp, чтобы сохранить, как мне это нужно?

file.cwd   file.base           file.path 
D:\Projects\test D:\Projects\test\public\app\      D:\Projects\test\public\app\bootstrap-8843d1ff.js 
D:\Projects\test D:\Projects\test\public\app\contacts\views\index\ D:\Projects\test\public\app\contacts\views\index\contacts-4173bf62.js 
D:\Projects\test D:\Projects\test\public\app\homepage\views\index\ D:\Projects\test\public\app\homepage\views\index\homepage-1eb3581b.js 
D:\Projects\test D:\Projects\test\public\app\user\resources\  D:\Projects\test\public\app\user\resources\user-f75d774a.js 
D:\Projects\test D:\Projects\test\public\       D:\Projects\test\public\index.html 

Я хочу сохранить файлы как:

gulp.dest('test\build') -> 
test\build\app\bootstrap-8843d1ff.js 
test\build\app\contacts-4173bf62.js 
test\build\app\homepage-1eb3581b.js 
test\build\app\user-f75d774a.js 
test\build\index.html 

Как переименовать УХО, базы и путь в потоке, чтобы сохранить как I нужно это?

ответ

0
file.cwd   file.base    file.path 
D:\Projects\test D:\Projects\test\public\ D:\Projects\test\public\app\bootstrap-8843d1ff.js 
D:\Projects\test D:\Projects\test\public\ D:\Projects\test\public\app\contacts-4173bf62.js 
D:\Projects\test D:\Projects\test\public\ D:\Projects\test\public\app\homepage-1eb3581b.js 
D:\Projects\test D:\Projects\test\public\ D:\Projects\test\public\app\user-f75d774a.js 
D:\Projects\test D:\Projects\test\public\ D:\Projects\test\public\index.html 

 Смежные вопросы

  • Нет связанных вопросов^_^