summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-29 02:44:28 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-29 02:44:28 +0200
commit3f01c9490bd6932aa991ecd86e8aaacecb911efc (patch)
tree2f5d94feca2ac56110049c09614c0274970c6812
parent5b90311befce19a4afd1fd778e5f23674e7b2eb1 (diff)
downloadwallet-core-3f01c9490bd6932aa991ecd86e8aaacecb911efc.tar.gz
wallet-core-3f01c9490bd6932aa991ecd86e8aaacecb911efc.tar.bz2
wallet-core-3f01c9490bd6932aa991ecd86e8aaacecb911efc.zip
adjust webpack config to exclude node modules
-rw-r--r--src/crypto/emscLoader.js2
-rw-r--r--src/webex/notify.ts2
-rw-r--r--webpack.config.js1
3 files changed, 4 insertions, 1 deletions
diff --git a/src/crypto/emscLoader.js b/src/crypto/emscLoader.js
index 190f007f1..eee2c8000 100644
--- a/src/crypto/emscLoader.js
+++ b/src/crypto/emscLoader.js
@@ -35,7 +35,7 @@ export function getLib() {
// Make sure that TypeScript doesn't try
// to check the taler-emscripten-lib.
const indirectRequire = require;
- const g = global as any;
+ const g = global;
// unavoidable hack, so that emscripten detects
// the environment as node even though importScripts
// is present.
diff --git a/src/webex/notify.ts b/src/webex/notify.ts
index 23e73d145..c743240a4 100644
--- a/src/webex/notify.ts
+++ b/src/webex/notify.ts
@@ -27,6 +27,8 @@
*/
import URI = require("urijs");
+import * as wxApi from "./wxApi";
+
declare var cloneInto: any;
const PROTOCOL_VERSION = 1;
diff --git a/webpack.config.js b/webpack.config.js
index f4771793f..49a7b865f 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -28,6 +28,7 @@ module.exports = function (env) {
},
plugins: [],
devtool: "source-map",
+ externals: ["fs", "path", "child_process", /.*taler-emscripten-lib.*/],
}
if (env.prod) {
base.plugins.push(new webpack.optimize.UglifyJsPlugin());