Skip to content

Commit

Permalink
Merge pull request #83 from davidmerfield/node-deps
Browse files Browse the repository at this point in the history
Fix `npm install` error
  • Loading branch information
davidmerfield committed Jan 9, 2019
2 parents 9c88746 + 9451ce0 commit 7e825a8
Show file tree
Hide file tree
Showing 3 changed files with 377 additions and 113 deletions.
4 changes: 3 additions & 1 deletion app/build/plugins/image/resize.js
Expand Up @@ -32,7 +32,9 @@ module.exports = function(path, callback){

image = sharp(path);

image.quality(100)
// Disable deprecated feature
// .quality(100)
image
.rotate()
.withoutEnlargement()
.resize(3000, 3000)
Expand Down

0 comments on commit 7e825a8

Please sign in to comment.