diff --git a/dist/img/avatar.png b/dist/img/avatar.png new file mode 100644 index 0000000..f273d0a Binary files /dev/null and b/dist/img/avatar.png differ diff --git a/dist/img/background.png b/dist/img/background.png new file mode 100644 index 0000000..c26cd7c Binary files /dev/null and b/dist/img/background.png differ diff --git a/dist/img/wmap.png b/dist/img/wmap.png new file mode 100644 index 0000000..38c8f64 Binary files /dev/null and b/dist/img/wmap.png differ diff --git a/gulpfile.js b/gulpfile.js index 2c6d232..337ab2e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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);