Skip to content

Commit

Permalink
fix #83: travis bundle error
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijithvijayan committed Mar 9, 2020
1 parent 4527884 commit 8b16025
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ const extensionReloader =
this.apply = () => {};
};

const getExtensionFileType = () => {
if (targetBrowser === 'opera') {
const getExtensionFileType = browser => {
if (browser === 'opera') {
return 'crx';
}
if (targetBrowser === 'firefox') {
if (browser === 'firefox') {
return 'xpi';
}

Expand Down

0 comments on commit 8b16025

Please sign in to comment.