loadingscreen and minify css

This commit is contained in:
infeeeee
2019-09-07 02:29:46 +02:00
parent 19cec75d2c
commit 1e14664a54
6 changed files with 33 additions and 6 deletions

View File

@@ -30,5 +30,10 @@ gulp.task('watch', function () {
livereload.listen()
gulp.watch('./sass/**/*.scss', gulp.series('sass'))
gulp.watch(['./**','!./node_modules/**'], gulp.series('liverel'))
});
gulp.task('minify-svg', function(){
return gulp.src('./img/**/*.svg')
.pipe(svgmin())
.pipe(gulp.dest('./imgmin'));
})