Update website.py

This commit is contained in:
Ivan Blinkov 2021-09-20 20:43:58 +03:00 committed by GitHub
parent 55cf857aba
commit e9aa12c914
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -242,7 +242,7 @@ def minify_website(args):
js_in = get_js_in(args)
js_out = f'{args.output_dir}/js/base.js'
if args.minify:
if args.minify and False: # TODO: return closure
js_in = [js[1:-1] for js in js_in]
closure_args = [
'--js', *js_in, '--js_output_file', js_out,