Rename files

This commit is contained in:
Alexandre Vicenzi 2020-04-20 22:56:30 +02:00
parent 1f7188db3b
commit 6b87efa507
4 changed files with 3 additions and 3 deletions

View file

@ -18,12 +18,12 @@ gulp.task('less', function () {
});
gulp.task('uglify', function () {
return gulp.src('./static/dark_theme/dark_theme.js')
return gulp.src('./static/dark-theme/dark-theme.js')
.pipe(uglify())
.pipe(rename({
extname: '.min.js'
}))
.pipe(gulp.dest('./static/dark_theme'));
.pipe(gulp.dest('./static/dark-theme'));
});
gulp.task('cp', function () {