fix: bundle maps creating extreme filesizes

This commit is contained in:
SethBurkart123
2024-02-07 16:41:11 +11:00
parent a63822b65c
commit e6e10e3d04
3 changed files with 11 additions and 8 deletions
+8 -1
View File
@@ -5,12 +5,19 @@
"description": "BetterSEQTA+ is a browser extension that adds features to SEQTA.",
"scripts": {
"dev": "parcel watch manifest.json --host localhost --config @parcel/config-webextension --no-hmr --no-content-hash",
"build": "parcel build manifest.json --config @parcel/config-webextension --no-content-hash --no-cache",
"build": "parcel build manifest.json --config @parcel/config-webextension --no-content-hash --no-cache --no-source-maps",
"dev-firefox": "parcel watch firefox/manifest.json --host localhost --config @parcel/config-webextension --no-hmr --no-content-hash",
"build-firefox": "parcel build firefox/manifest.json --config @parcel/config-webextension --no-content-hash --no-cache",
"eslint": "eslint --fix .",
"package": "7z a -tzip extension.zip ./dist/*"
},
"targets": {
"prod": {
"sourceMap": {
"inline": false
}
}
},
"keywords": [],
"author": "",
"license": "MIT",