diff options
author | Jez Ng <me@jezng.com> | 2013-06-19 01:56:47 -0700 |
---|---|---|
committer | Jez Ng <me@jezng.com> | 2013-06-19 14:09:13 -0700 |
commit | 7656f948388b5a3421996196ea36c7bb052bb884 (patch) | |
tree | e7a1967ccce8cf5f0a0e077dcacda2116f4d6b8d /tools/shared.py | |
parent | be5d45fe2932f9452c623b63720cb7d9857a1baa (diff) |
Lay the groundwork for optimized source maps.
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/shared.py b/tools/shared.py index c16c9115..89ceeccb 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -1213,8 +1213,8 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)''' % { 'winfix': '' if not WINDOWS e return opts @staticmethod - def js_optimizer(filename, passes, jcache): - return js_optimizer.run(filename, passes, listify(NODE_JS), jcache) + def js_optimizer(filename, passes, jcache, debug): + return js_optimizer.run(filename, passes, listify(NODE_JS), jcache, debug) @staticmethod def closure_compiler(filename, pretty=True): |