using esbuild now because it's easier to target specific files

This commit is contained in:
Ryan Breen
2023-01-12 23:27:11 -05:00
parent e4dc8870eb
commit d93fa1aacc
13 changed files with 546 additions and 2664 deletions

View File

@@ -15,11 +15,12 @@
},
"background": {
"service_worker": "dist/background.js"
"service_worker": "background.build.js",
"type": "module"
},
"content_scripts": [{
"js": [ "dist/content.js" ],
"js": [ "content.build.js" ],
"matches": [ "<all_urls>" ]
}],
@@ -39,7 +40,7 @@
"web_accessible_resources": [
{
"resources": ["dist/nostr.js"],
"resources": ["nostr.build.js", "popup.build.js"],
"matches": ["<all_urls>"]
}
]