1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-11-20 11:26:54 +00:00

Merge pull request #15 from klausweiss/master

Fix #6: images not being loaded
This commit is contained in:
Tim Meier 2017-06-10 18:59:20 +02:00 committed by GitHub
commit e45d26ef7c

View File

@ -144,7 +144,9 @@ gulp.task("generate sprites", ["resize lg"], function() {
//template: "./client/scss/_cards.hbs"
})
.pipe(imagemin())
.pipe(gulpif("*.png", rename({
.pipe(gulpif(function (file) {
return file.path.match(".*\\.png$") != null;
}, rename({
extname: ".PNG"
})))
.pipe(gulp.dest("./public/build/"));