Skip to content

Instantly share code, notes, and snippets.

@Husamui
Last active November 29, 2015 17:37
Show Gist options
  • Select an option

  • Save Husamui/86ce61abdebbb13f1670 to your computer and use it in GitHub Desktop.

Select an option

Save Husamui/86ce61abdebbb13f1670 to your computer and use it in GitHub Desktop.
Gulp Files Rename
var gulp = require('gulp'),
rename = require("gulp-rename");
gulp.task('default', ['rename']);
gulp.task('rename', function () {
return gulp.src('./icons_svg/*.svg')
.pipe(rename(function (path) {
var newName = path.basename.split("_");
path.basename = newName[1];
}))
.pipe(gulp.dest("./dist"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment