summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Austin <chad@imvu.com>2013-07-16 16:03:20 -0700
committerChad Austin <chad@imvu.com>2013-07-17 15:04:07 -0700
commit2b2b3b613e44970c82774416b636edb6afa0d262 (patch)
tree3e7d557e72df9ff7507307ad9df2dadba6fce852
parent57a71725b45934291510f19b68ca9fcdb8093fa0 (diff)
the compress js optimizer pass is gone, replaced with minifyWhitespace
-rwxr-xr-xscons-tools/emscripten.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scons-tools/emscripten.py b/scons-tools/emscripten.py
index f5ae236b..b4912aaa 100755
--- a/scons-tools/emscripten.py
+++ b/scons-tools/emscripten.py
@@ -142,7 +142,7 @@ def emscripten(env, target_js, source_bc):
[global_emscripten_min_js] = env.JSOptimizer(
buildName('global.min.js'),
closure_js,
- JS_OPTIMIZER_PASSES=['simplifyExpressionsPost', 'compress', 'last'])
+ JS_OPTIMIZER_PASSES=['simplifyExpressionsPost', 'minifyWhitespace', 'last'])
[emscripten_iteration_js] = env.WrapInModule(
buildName('iteration.js'),