about summary refs log tree commit diff stats
path: root/package.json
diff options
context:
space:
mode:
authorHygna <hygna@proton.me>2022-10-22 22:30:35 +0100
committerHygna <hygna@proton.me>2022-10-22 22:30:35 +0100
commitd0bab00b403465a02c66875fc75ae8dfae83e330 (patch)
treeedf8b2a59076c180e0b2db4ec18e370052dec321 /package.json
parentMerge https://codeberg.org/LibRedirect/libredirect (diff)
downloadlibredirect-d0bab00b403465a02c66875fc75ae8dfae83e330.zip
Moved web-ext config from flags to js file
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index e0578173..f547b97e 100644
--- a/package.json
+++ b/package.json
@@ -6,9 +6,9 @@
 		"npm": ">=8.1.2"
 	},
 	"scripts": {
-		"start": "web-ext run --browser-console --source-dir ./src/",
-		"build": "web-ext build --overwrite-dest --source-dir ./src/",
-		"test": "web-ext lint --source-dir ./src/ || true",
+		"start": "web-ext run",
+		"build": "web-ext build",
+		"test": "web-ext lint",
 		"instances": "python3 src/instances/get_instances.py && git update-index --assume-unchanged src/instances/blacklist.json src/instances/data.json",
 		"ejs": "npx ejs src/pages/options/index.ejs -f src/config/config.json -o src/pages/options/index.html && npx ejs src/pages/popup/popup.ejs -f src/config/config.json -o src/pages/popup/popup.html"
 	},