Skip to content

Commit

Permalink
PR feedback changes
Browse files Browse the repository at this point in the history
  • Loading branch information
triwav committed May 28, 2021
1 parent 142c40c commit 3c92b8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,5 +165,6 @@ module.exports = {
'no-shadow': 'off'
}
}
]
};
],
ignorePatterns: ['types']
};
2 changes: 1 addition & 1 deletion src/RokuDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ export class RokuDeploy {
data = preFileZipCallback(file, data);
}

const ext = path.extname(file.dest);
const ext = path.extname(file.dest).toLowerCase();
let compression = 'DEFLATE';

if (ext === '.jpg' || ext === '.png' || ext === '.jpeg') {
Expand Down

0 comments on commit 3c92b8b

Please sign in to comment.