Skip to content

Commit

Permalink
These are binary formats, and gulp 5.0 needs us to say so
Browse files Browse the repository at this point in the history
  • Loading branch information
marksteward committed Jul 25, 2024
1 parent 8a8d4ce commit 7e91dda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@ function css(cb) {

function icons(cb) {
pump([
gulp.src('./images/**/*'),
gulp.src('./images/**/*', { encoding: false }),
gulp.dest('static/images'),
], cb);
}

function images(cb) {
pump([
gulp.src('./node_modules/@primer/octicons/build/svg/**/*.svg'),
gulp.src('./node_modules/@primer/octicons/build/svg/**/*.svg', { encoding: false }),
gulp.dest('static/icons'),
], cb);
}
Expand Down

0 comments on commit 7e91dda

Please sign in to comment.