diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-01-10 20:07:42 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-01-10 20:07:42 +0100 |
commit | 473503a246aa7a23539a349710c5549d1d87c147 (patch) | |
tree | 2b1ee9b420df72a0d861759d1fbcd2226e489086 /extension/manifest.json | |
parent | dd19e0ecbe114ebd71122ff57ea56eabb6258b75 (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.json | 21 |
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" ] }, |