Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Danny Colin
4410245b0d Revert "Fix failing test install by replacing $(npm bin) with npx" 2023-02-22 12:18:22 -05:00
4 changed files with 18 additions and 3 deletions

View file

@ -32,4 +32,4 @@ rm -rf $TMPDIR/src/_locales/.github || die
print G "done." print G "done."
print Y "Running the test..." print Y "Running the test..."
npx addons-linter $TMPDIR/src || die $(npm bin)/addons-linter $TMPDIR/src || die

View file

@ -9,7 +9,7 @@
}, },
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"addons-linter": "^5.28.0", "addons-linter": "^3.23.0",
"ajv": "^6.6.3", "ajv": "^6.6.3",
"chai": "^4.2.0", "chai": "^4.2.0",
"eslint": "^7.32.0", "eslint": "^7.32.0",

@ -1 +1 @@
Subproject commit 417e6294ed767914b617a5e56ccbe67482df181c Subproject commit fa5fb497bd4e5c9b7d69407ee593b853cf839009

15
web-ext-config.js Normal file
View file

@ -0,0 +1,15 @@
module.exports = {
sourceDir: "./src",
build: {
overwriteDest: true,
},
run: {
pref: [
"ui.popup.disable_autohide=true",
"extensions.manifestV3.enabled=false",
"xpinstall.signatures.required=false",
"ui.systemUsesDarkTheme=1"
],
browserConsole: true
},
};