English / 日本語
Remove rev
from the build
task.
gulp.task('build', function (callback) {
- runSequence('clean:dist', ['html', 'styles', 'scripts', 'images', 'extras'], 'rev', callback);
+ runSequence('clean:dist', ['html', 'styles', 'scripts', 'images', 'extras'], callback);
});
Optional:
If you want to remove this feature permanently, remove rev
and filerev
task, and then uninstall gulp-rev
and gulp-rev-replace
from your project.
- gulp.task('filerev', function () {
- ...
- });
- gulp.task('rev', ['filerev'], function () {
- ...
- });
$ npm uninstall gulp-rev gulp-rev-replace --save-dev