fix: support image building

This commit is contained in:
Kazhnuz 2019-11-28 14:29:17 +01:00
부모 7f2f977ea2
커밋 7c00655aff
4개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제

BIN
dist/img/avatar.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  크기: 1.2 KiB

BIN
dist/img/background.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  크기: 4.5 KiB

BIN
dist/img/wmap.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  크기: 27 KiB

파일 보기

@ -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);