fix: support image building

This commit is contained in:
Kazhnuz 2019-11-28 14:29:17 +01:00
förälder 7f2f977ea2
incheckning 7c00655aff
4 ändrade filer med 8 tillägg och 1 borttagningar

Binär
dist/img/avatar.png vendored Normal file

Binary file not shown.

Efter

Bredd:  |  Höjd:  |  Storlek: 1.2 KiB

Binär
dist/img/background.png vendored Normal file

Binary file not shown.

Efter

Bredd:  |  Höjd:  |  Storlek: 4.5 KiB

Binär
dist/img/wmap.png vendored Normal file

Binary file not shown.

Efter

Bredd:  |  Höjd:  |  Storlek: 27 KiB

Visa fil

@ -22,7 +22,14 @@ function dep() {
}
function img() {
return src(['src/img/*'])
.pipe(dest('dist/img'));
}
exports.html = html;
exports.css = css;
exports.dep = dep;
exports.default = parallel(html, css, dep);
exports.img = img;
exports.default = parallel(html, css, dep, img);