Skip to content

Commit

Permalink
adjust jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
sanemat committed Jun 1, 2024
1 parent 486d857 commit 70da11f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ module.exports = function (grunt) {
all: [
'Gruntfile.js',
'<%= yeoman.app %>/scripts/{,*/}*.js',
'test/spec/{,*/}*.js'
'test/spec/{,*/}*.js',
'!<%= yeoman.app %>/scripts/*.min.js'
]
},
imagemin: {
Expand Down
4 changes: 3 additions & 1 deletion app/scripts/background.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const browser = require("webextension-polyfill.min")
'use strict';

const browser = require('webextension-polyfill.min');

browser.runtime.onInstalled.addListener(function (details) {
console.log('previousVersion', details.previousVersion);
Expand Down

0 comments on commit 70da11f

Please sign in to comment.