For unknown reason, it forces me to add in the property `name` in order to use `gulp-template`. ```js ... gulp.src(files) .pipe(gulpTemplate({ name: 'random-name', // unknown required property `name` ... // rest of the data }) ,pipe(gulp.dest(dest)); ... ```