diff options
author | Chad Austin <chad@imvu.com> | 2013-07-16 16:03:20 -0700 |
---|---|---|
committer | Chad Austin <chad@imvu.com> | 2013-07-17 15:04:07 -0700 |
commit | 2b2b3b613e44970c82774416b636edb6afa0d262 (patch) | |
tree | 3e7d557e72df9ff7507307ad9df2dadba6fce852 | |
parent | 57a71725b45934291510f19b68ca9fcdb8093fa0 (diff) |
the compress js optimizer pass is gone, replaced with minifyWhitespace
-rwxr-xr-x | scons-tools/emscripten.py | 2 |
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'),
|