aboutsummaryrefslogtreecommitdiff
path: root/extension/manifest.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-01-10 20:07:42 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-01-10 20:07:42 +0100
commit473503a246aa7a23539a349710c5549d1d87c147 (patch)
tree2b1ee9b420df72a0d861759d1fbcd2226e489086 /extension/manifest.json
parentdd19e0ecbe114ebd71122ff57ea56eabb6258b75 (diff)
The great modularization.
Use ES6 module syntax and SystemJS modules for everything. Some testing stubs were added as well.
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json21
1 files changed, 9 insertions, 12 deletions
diff --git a/extension/manifest.json b/extension/manifest.json
index 8fceeda9d..b7991e3f3 100644
--- a/extension/manifest.json
+++ b/extension/manifest.json
@@ -26,9 +26,10 @@
{
"matches": ["*://*/*"],
"js": [
- "content_scripts/notify.js",
- "lib/URI.js",
- "lib/util.js"
+ "lib/vendor/system.src.js",
+ "lib/vendor/URI.js",
+ "lib/util.js",
+ "content_scripts/notify.js"
],
"run_at": "document_start"
}
@@ -41,16 +42,12 @@
"background": {
"scripts": [
+ "lib/vendor/URI.js",
+ "lib/vendor/handlebars-v4.0.5.js",
"lib/util.js",
- "lib/URI.js",
- "background/checkable.js",
- "background/libwrapper.js",
- "background/emscriptif.js",
- "background/db.js",
- "background/query.js",
- "background/messaging.js",
- "background/http.js",
- "background/wallet.js"
+ "lib/emscripten/libwrapper.js",
+ "lib/vendor/system.src.js",
+ "background/main.js"
]
},