Skip to content

Commit

Permalink
deps: update to gulp 5
Browse files Browse the repository at this point in the history
  • Loading branch information
MylesBorins committed Jun 13, 2024
1 parent 6e8f2b3 commit 06905bd
Show file tree
Hide file tree
Showing 3 changed files with 1,494 additions and 4,769 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async function cleanImages() {
}

function copyImages() {
return src('src/images/**/*')
return src('src/images/**/*', {encoding: false})
.pipe(dest('dist/images'))
.pipe(connect.reload());
}
Expand All @@ -110,7 +110,7 @@ exports.clean = cleanTask;

function connectTask(done) {
connect.server({
root: 'dist',
root: 'dist/',
livereload: true
});
done();
Expand Down
Loading

0 comments on commit 06905bd

Please sign in to comment.