summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-28 23:15:41 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-28 23:15:41 +0200
commitb6e774585d32017e5f1ceeeb2b2e2a5e350354d3 (patch)
tree080cb5afe3b48c0428abd2d7de1ff7fe34d9b9b1 /webpack.config.js
parent38a74188d759444d7e1abac856f78ae710e2a4c5 (diff)
downloadwallet-core-b6e774585d32017e5f1ceeeb2b2e2a5e350354d3.tar.gz
wallet-core-b6e774585d32017e5f1ceeeb2b2e2a5e350354d3.tar.bz2
wallet-core-b6e774585d32017e5f1ceeeb2b2e2a5e350354d3.zip
move webex specific things in their own directory
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/webpack.config.js b/webpack.config.js
index deca2ae76..f4771793f 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -39,25 +39,25 @@ module.exports = function (env) {
};
const configBackground = {
- entry: {"background": "./src/background/background.ts"},
+ entry: {"background": "./src/webex/background.ts"},
};
const configContentScript = {
- entry: {"contentScript": "./src/content_scripts/notify.ts"},
+ entry: {"contentScript": "./src/webex/notify.ts"},
};
const configExtensionPages = {
entry: {
- "add-auditor": "./src/pages/add-auditor.tsx",
- "auditors": "./src/pages/auditors.tsx",
- "confirm-contract": "./src/pages/confirm-contract.tsx",
- "confirm-create-reserve": "./src/pages/confirm-create-reserve.tsx",
- "error": "./src/pages/error.tsx",
- "logs": "./src/pages/logs.tsx",
- "popup": "./src/pages/popup.tsx",
- "show-db": "./src/pages/show-db.ts",
- "tree": "./src/pages/tree.tsx",
- "payback": "./src/pages/payback.tsx",
+ "add-auditor": "./src/webex/pages/add-auditor.tsx",
+ "auditors": "./src/webex/pages/auditors.tsx",
+ "confirm-contract": "./src/webex/pages/confirm-contract.tsx",
+ "confirm-create-reserve": "./src/webex/pages/confirm-create-reserve.tsx",
+ "error": "./src/webex/pages/error.tsx",
+ "logs": "./src/webex/pages/logs.tsx",
+ "popup": "./src/webex/pages/popup.tsx",
+ "show-db": "./src/webex/pages/show-db.ts",
+ "tree": "./src/webex/pages/tree.tsx",
+ "payback": "./src/webex/pages/payback.tsx",
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({