aboutsummaryrefslogtreecommitdiffstats
path: root/mascara
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-01-12 10:15:22 +0800
committerAlexander Tseung <alextsg@users.noreply.github.com>2018-01-12 10:15:22 +0800
commit41057a76c567a80f98ff17e5d7a24c9500c11e4c (patch)
tree80959719993b4033c8502e76efac81c9b0628b47 /mascara
parentb8310ac62e358af9a6a9f3ed1e0ffa25a2a00b8d (diff)
downloadtangerine-wallet-browser-41057a76c567a80f98ff17e5d7a24c9500c11e4c.tar
tangerine-wallet-browser-41057a76c567a80f98ff17e5d7a24c9500c11e4c.tar.gz
tangerine-wallet-browser-41057a76c567a80f98ff17e5d7a24c9500c11e4c.tar.bz2
tangerine-wallet-browser-41057a76c567a80f98ff17e5d7a24c9500c11e4c.tar.lz
tangerine-wallet-browser-41057a76c567a80f98ff17e5d7a24c9500c11e4c.tar.xz
tangerine-wallet-browser-41057a76c567a80f98ff17e5d7a24c9500c11e4c.tar.zst
tangerine-wallet-browser-41057a76c567a80f98ff17e5d7a24c9500c11e4c.zip
[NewUI] Build mascara with uglification and gzipping. (#2735)
* Adds uglification and gzipping. * Build mascara with uglification and gzipping. * Remove gzipping from extension build.
Diffstat (limited to 'mascara')
-rw-r--r--mascara/server/index.js3
-rw-r--r--mascara/server/util.js4
2 files changed, 6 insertions, 1 deletions
diff --git a/mascara/server/index.js b/mascara/server/index.js
index 83f84f6d1..6fb1287cc 100644
--- a/mascara/server/index.js
+++ b/mascara/server/index.js
@@ -2,6 +2,7 @@ const path = require('path')
const express = require('express')
const createBundle = require('./util').createBundle
const serveBundle = require('./util').serveBundle
+const compression = require('compression')
module.exports = createMetamascaraServer
@@ -16,6 +17,8 @@ function createMetamascaraServer () {
// serve bundles
const server = express()
+ server.use(compression())
+
// ui window
serveBundle(server, '/ui.js', uiBundle)
server.use(express.static(path.join(__dirname, '/../ui/'), { setHeaders: (res) => res.set('X-Frame-Options', 'DENY') }))
diff --git a/mascara/server/util.js b/mascara/server/util.js
index af2daddb9..f9692afb6 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()