Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

4.19. gulp-copy

Usage

		
// gulpfile.js
 
var gulpCopy = require('gulp-copy');
var sourceFiles = [ 'source1/*', 'source2/*.txt' ];
var destination = 'dest/';
 
return gulp
    .src(sourceFiles)
    .pipe(gulpCopy(outputPath, options))
    .dest(destination);