diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2018-01-13 05:41:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-13 05:41:03 +0800 |
commit | 71a308d98b541b05ffabf8f63085e3cbd8bf61b7 (patch) | |
tree | 5f360e4a65a0768817913e99840e3705439432e2 /mascara/server/util.js | |
parent | 0f4bfcb02e3a04f044a571e01a4977dae2afec8e (diff) | |
parent | bdcee058dc278c46c828f376476f121417481385 (diff) | |
download | dexon-wallet-71a308d98b541b05ffabf8f63085e3cbd8bf61b7.tar.gz dexon-wallet-71a308d98b541b05ffabf8f63085e3cbd8bf61b7.tar.zst dexon-wallet-71a308d98b541b05ffabf8f63085e3cbd8bf61b7.zip |
Merge branch 'uat' into cb-388
Diffstat (limited to 'mascara/server/util.js')
-rw-r--r-- | mascara/server/util.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mascara/server/util.js b/mascara/server/util.js index af2daddb..f9692afb 100644 --- a/mascara/server/util.js +++ b/mascara/server/util.js @@ -23,7 +23,9 @@ function createBundle (entryPoint) { cache: {}, packageCache: {}, plugin: [watchify], - }).transform('babelify') + }) + .transform('babelify') + .transform('uglifyify', { global: true }) bundler.on('update', bundle) bundle() |