From f755f8007263576301a121d989d66bf4c950d58a Mon Sep 17 00:00:00 2001 From: shockey Date: Wed, 26 Apr 2017 22:43:54 -0700 Subject: [PATCH] Update webpack-dist.config.js --- webpack-dist.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack-dist.config.js b/webpack-dist.config.js index 48410ad9..5c085f44 100644 --- a/webpack-dist.config.js +++ b/webpack-dist.config.js @@ -24,7 +24,7 @@ module.exports = require('./make-webpack-config.js')({ externals: function(context, request, cb) { // webpack injects some stuff into the resulting file, // these libs need to be pulled in to keep that working. - let exceptionsForWebpack = ["ieee754", "base64-js"] + var exceptionsForWebpack = ["ieee754", "base64-js"] if(node_modules.indexOf(request) !== -1 || exceptionsForWebpack.indexOf(request) !== -1) { console.log(request) cb(null, 'commonjs ' + request)