Skip to content

Commit 58d2754

Browse files
committed
catch and fix lint warnings
1 parent 976e71b commit 58d2754

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.web-extension-id

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This file was created by https://github.com/mozilla/web-ext
2+
# Your auto-generated extension ID for addons.mozilla.org is:
3+

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "__MSG_extensionName__",
33
"short_name": "__MSG_extensionShortName__",
44
"description": "__MSG_extensionDescription__",
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"manifest_version": 3,
77
"default_locale": "en",
88
"icons": {
@@ -33,7 +33,7 @@
3333
"browser_specific_settings": {
3434
"gecko": {
3535
36-
"strict_min_version": "101.0"
36+
"strict_min_version": "109.0"
3737
}
3838
}
3939
}

package.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ source .env
1010

1111
set -e
1212

13-
web-ext lint --output json --pretty >web-ext-artifacts/lint.json
13+
if ! web-ext lint --output json --pretty >web-ext-artifacts/lint.json; then
14+
echo "web-ext lint failed"
15+
exit 1
16+
fi
17+
1418
web-ext build --overwrite-dest
1519
web-ext sign --no-input

0 commit comments

Comments
 (0)