var data_uri = require('gulp-data-uri'); gulp.task('templates', function(){ gulp.src(['file.txt']) .pipe(data_uri()) .pipe(gulp.dest('build/file.txt')); }); ...
確定! 回上一頁